Skip to content

Commit

Permalink
Merge pull request #7 from MStankiewiczOfficial/development
Browse files Browse the repository at this point in the history
GitHub Actions Bugfix
  • Loading branch information
MStankiewiczOfficial authored Jan 5, 2025
2 parents 90f5ebb + a5cdb3c commit bbc01f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
id: extract-data
run: |
NAME=$(jq -r '.name' src/Gecko/manifest.json | tr ' ' '_')
VERSION=$(jq -r '.version' src/manifest.json)
ID=$(jq -r '.browser_specific_settings.gecko.id' src/manifest.json)
VERSION=$(jq -r '.version' src/Gecko/manifest.json)
ID=$(jq -r '.browser_specific_settings.gecko.id' src/Gecko/manifest.json)
echo "EXT_NAME=${NAME}" >> $GITHUB_ENV
echo "EXT_VERSION=${VERSION}" >> $GITHUB_ENV
echo "EXT_ID=${ID}" >> $GITHUB_ENV
Expand All @@ -50,7 +50,7 @@ jobs:
- name: Build unsigned XPI
run: |
web-ext build -s src --artifacts-dir ./artifacts
web-ext build -s src/Gecko --artifacts-dir ./artifacts
mv ./artifacts/*.zip ./artifacts/${EXT_NAME}-${EXT_VERSION}-gecko-unsigned.zip
- name: Convert ZIP to XPI
Expand Down

0 comments on commit bbc01f3

Please sign in to comment.