diff options
| -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]" |