Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuvrajhere committed Oct 19, 2022
2 parents 0162c6f + 2edb2fa commit db2b530
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 6 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["dev"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ From CDN:

```html
<!-- Latest patch release -->
<script src="https://unpkg.com/[email protected].4/dist/FlamSaasSDK.min.js"></script>
<script src="https://unpkg.com/[email protected].6/dist/FlamSaasSDK.min.js"></script>
```

From [npm](<[https://npmjs.org](https://npmjs.org/)>):
Expand Down
4 changes: 2 additions & 2 deletions dist/FlamSaasSDK.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions dist/FlamSaasSDK.min.esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/FlamSaasSDK.min.esm.js.map

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/FlamSaasSDK.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/FlamSaasSDK.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/vanilla-js/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ <h5>Reference Id</h5>
</div>
</body>

</html>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flamsdk",
"version": "1.0.4",
"version": "1.0.6",
"description": "flamSdk for saas",
"author": "bucharitesh",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = { raw: '1.0.4' };
module.exports = { raw: '1.0.6' };

0 comments on commit db2b530

Please sign in to comment.