Skip to content

Commit

Permalink
fix: reenable firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Aug 31, 2023
1 parent dbfda8d commit 0ccd7c7
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions .github/workflows/publish-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ jobs:
publish_firefox_extension:
name: Publish Firefox extension
runs-on: ubuntu-latest
if: false
# if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v')
env:
MINIFY_PRODUCTION_BUILD: true
TARGET_BROWSER: firefox
Expand Down Expand Up @@ -172,13 +171,13 @@ jobs:
WEB_EXT_API_KEY: ${{ secrets.FIREFOX_API_KEY }}
WEB_EXT_API_SECRET: ${{ secrets.FIREFOX_API_SECRET }}

# post_run:
# runs-on: ubuntu-latest
# needs:
# - publish_chrome_extension
# # - publish_firefox_extension
# steps:
# - name: Publish Statuses
# run: |
# # echo "::warning::Firefox Publish Status: $([[ "${{ needs.publish_firefox_extension.outputs.publish_status }}" = "0" ]] && echo 'SUCCESS' || echo 'FAILED')"
# echo "::warning::Chrome Publish Status: $([[ "${{ needs.publish_chrome_extension.outputs.publish_status }}" = "0" ]] && echo 'SUCCESS' || echo 'FAILED')"
post_run:
runs-on: ubuntu-latest
needs:
- publish_chrome_extension
# - publish_firefox_extension
steps:
- name: Publish Statuses
run: |
# echo "::warning::Firefox Publish Status: $([[ "${{ needs.publish_firefox_extension.outputs.publish_status }}" = "0" ]] && echo 'SUCCESS' || echo 'FAILED')"
echo "::warning::Chrome Publish Status: $([[ "${{ needs.publish_chrome_extension.outputs.publish_status }}" = "0" ]] && echo 'SUCCESS' || echo 'FAILED')"

0 comments on commit 0ccd7c7

Please sign in to comment.