diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-04-09 13:45:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-09 13:45:59 +0900 |
commit | 9d556f69349a8dec69442656ad21679212a42a9c (patch) | |
tree | 0d72b9d304af84a5e461b0e63a23900d642dd861 /.github/workflows/publish-firefox-development.yml | |
parent | e8c62d65aab6a37ab988b135dead0f580ca0eb0b (diff) | |
parent | f776fa8cae201f960d83af3781a34a85857b6aae (diff) |
Merge pull request #125 from themoeway/fix-firefox-dev-upload-url
fix publish-firefox-development's upload_url for xpi
Diffstat (limited to '.github/workflows/publish-firefox-development.yml')
-rw-r--r-- | .github/workflows/publish-firefox-development.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/publish-firefox-development.yml b/.github/workflows/publish-firefox-development.yml index 6ce61dc5..2877a692 100644 --- a/.github/workflows/publish-firefox-development.yml +++ b/.github/workflows/publish-firefox-development.yml @@ -5,6 +5,10 @@ name: publish-firefox-development on: workflow_dispatch: + inputs: + upload_url: + description: "The upload_url from the release created by create-prerelease-on-tag.yml" + required: true permissions: contents: read jobs: @@ -44,7 +48,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - upload_url: ${{ github.event.release.upload_url }} + upload_url: ${{ inputs.upload_url }} asset_path: yomitan-firefox.xpi asset_name: yomitan-firefox.xpi asset_content_type: application/x-xpinstall |