diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-03-18 13:33:57 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-03-18 13:43:18 +0900 |
commit | 0572d1ca98cb5f4583d61208940f808ab4e95c99 (patch) | |
tree | ab3d43171b4dc4da9811a1bd9272799251b2adb0 | |
parent | a56e75e65588a9ba09ccc7c2a3b00edd8ec56522 (diff) |
CD: Fix error in publish-firefox-development.yml23.3.18.0
-rw-r--r-- | .github/workflows/publish-firefox-development.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/publish-firefox-development.yml b/.github/workflows/publish-firefox-development.yml index 7ffb56ec..6ce61dc5 100644 --- a/.github/workflows/publish-firefox-development.yml +++ b/.github/workflows/publish-firefox-development.yml @@ -9,7 +9,6 @@ permissions: contents: read jobs: build-signed-xpi-asset: - needs: ensure-zip runs-on: ubuntu-latest environment: cd permissions: @@ -17,7 +16,7 @@ jobs: steps: - uses: robinraju/release-downloader@768b85c8d69164800db5fc00337ab917daf3ce68 # pin@v1.7 with: - release: ${{ github.event.release.id }} + tag: ${{ github.ref_name }} fileName: "*" - name: Sign Firefox xpi for offline distribution @@ -65,7 +64,7 @@ jobs: "updates": [ { "version": "${{ github.event.release.name }}", - "update_link": "${{ uploadReleaseAsset.browser_download_url }}" + "update_link": "${{ steps.uploadReleaseAsset.browser_download_url }}" } ] } |