diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-22 08:10:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-22 08:10:43 +0000 |
commit | 367e10dcbc9b0cf26daa7b1401940a3370e6a632 (patch) | |
tree | 34dc0abfc8149f3b8de9a4856971500ff29cdd2f /.github/workflows/publish-firefox-development.yml | |
parent | 867ce44bd0aefc3e3d7a8b76dcd5f2ca761d629a (diff) | |
parent | 0daa5005b8396f25fbb8a03c19490551b895a436 (diff) |
Merge pull request #282 from themoeway/fix-cicd-errors
Fix CI/CD errors
Diffstat (limited to '.github/workflows/publish-firefox-development.yml')
-rw-r--r-- | .github/workflows/publish-firefox-development.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/publish-firefox-development.yml b/.github/workflows/publish-firefox-development.yml index 32b0532a..c956b76c 100644 --- a/.github/workflows/publish-firefox-development.yml +++ b/.github/workflows/publish-firefox-development.yml @@ -75,7 +75,7 @@ jobs: "updates": [ { "version": "${{ github.event.release.name }}", - "update_link": "${{ steps.uploadReleaseAsset.browser_download_url }}" + "update_link": "${{ steps.uploadReleaseAsset.outputs.browser_download_url }}" } ] } @@ -84,6 +84,7 @@ jobs: EOF - name: Commit files + continue-on-error: true run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" |