Skip to content

Commit

Permalink
run deploy even if dep is skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
nhanphan committed Sep 13, 2024
1 parent eb478ec commit 55ffe19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-program.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
name: Program / Deploy
runs-on: ubuntu-latest
needs: [test_js, check_tag]
if: needs.test_js.result == 'success' || (needs.check_tag.result == 'success' && needs.check_tag.outputs.type == 'release')
if: always() && (needs.test_js.result == 'success' || needs.test_js.result == 'skipped')
permissions:
contents: write
steps:
Expand Down

0 comments on commit 55ffe19

Please sign in to comment.