Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
sleaper committed Mar 22, 2023
1 parent 8a85969 commit 01be62c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/publish-on-firefox-add-ons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,27 @@ jobs:

- name: Clean source code
shell: bash
env:
API_URL: ${{ secrets.API_URL }}
PAGE_URL: ${{ secrets.PAGE_URL }}
run: |
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' \;
rm -rf .git
cd web-extension
touch .env
echo $API_URL >> .env
echo $PAGE_URL >> .env
- name: Zip source code
uses: vimtor/action-zip@v1
with:
files: ./
dest: source-code.zip

- uses: actions/upload-artifact@v3
with:
name: test
path: ./source-code.zip

- name: Deploy to Firefox Addons
id: addonsDeploy
Expand Down
2 changes: 1 addition & 1 deletion web-extension/dist/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Authier",
"description": "Authier chrome extension",
"version": "1.0.13",
"version": "1.0.14",
"browser_action": {
"default_icon": "icon-16.png",
"default_popup": "js/popup.html"
Expand Down
2 changes: 1 addition & 1 deletion web-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "authier-web-extension",
"version": "1.0.13",
"version": "1.0.14",
"description": "Authier web Extension for all our supported browsers",
"license": "AGPL-3.0-or-later",
"webExt": {
Expand Down

0 comments on commit 01be62c

Please sign in to comment.