Skip to content

Commit

Permalink
fix dir
Browse files Browse the repository at this point in the history
  • Loading branch information
fzhem committed Apr 14, 2024
1 parent 5ec84b3 commit d60720a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Get release version
id: release_version
run: |
echo "${{ steps.release_version.outputs.VERSION }}" > $GITHUB_STATE/VERSION
echo "${{ steps.release_version.outputs.VERSION }}" > /VERSION
- name: Assemble release notes
run: |
> release.body.txt
Expand All @@ -31,11 +31,11 @@ jobs:
git log --pretty=format:"- %s" -- . ":(exclude).github" >> release.body.txt
- name: Update manifest.json for Firefox
run: |
version=$(< $GITHUB_STATE/VERSION)
version=$(< /VERSION)
jq --arg version "$version" '.version = $version' platform/firefox/manifest.json > manifest_temp.json && mv manifest_temp.json platform/firefox/manifest.json
- name: Update manifest.json for Chromium
run: |
version=$(< $GITHUB_STATE/VERSION)
version=$(< /VERSION)
jq --arg version "$version" '.version = $version' platform/chromium/manifest.json > manifest_temp.json && mv manifest_temp.json platform/chromium/manifest.json
- name: Create GitHub release
id: create_release
Expand Down

0 comments on commit d60720a

Please sign in to comment.