Skip to content

Commit

Permalink
submitで失敗してもokに
Browse files Browse the repository at this point in the history
  • Loading branch information
Midra429 committed Oct 16, 2024
1 parent 9f964e5 commit 514092c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ jobs:
pnpm zip
pnpm zip:firefox
- name: Push tag to GitHub
run: |
git push
git push --tags
- name: Create Release to GitHub
run: |
gh release create "${VERSION}" dist/*-chrome.zip dist/*-firefox.zip
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Submit to Stores
run: |
pnpm wxt submit \
Expand All @@ -66,14 +77,3 @@ jobs:
FIREFOX_EXTENSION_ID: ${{ secrets.FIREFOX_EXTENSION_ID }}
FIREFOX_JWT_ISSUER: ${{ secrets.FIREFOX_JWT_ISSUER }}
FIREFOX_JWT_SECRET: ${{ secrets.FIREFOX_JWT_SECRET }}

- name: Push tag to GitHub
run: |
git push
git push --tags
- name: Create Release to GitHub
run: |
gh release create "${VERSION}" dist/*-chrome.zip dist/*-firefox.zip
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 514092c

Please sign in to comment.