Skip to content

Commit

Permalink
fix workflow comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Apr 18, 2022
1 parent 91d3c9c commit 6c256d2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ on:
jobs:
manual:
name: 📝 Manual Release
# we need to check for `nightly` refs and skip them as we dont want to
# double publish a version as it would fail. unfortantely even using curl
# and a `repository_dispatch` trigger, actions still aren't ran if a version
# is published using the default secrets.GITHUB_TOKEN.
if: |
# we need to check for `nightly` refs and skip them as we dont want to double publish a version as it would fail. unfortantely even using curl and a `repository_dispatch` trigger, actions still aren't ran if a version is published using the default secrets.GITHUB_TOKEN.
github.repository == 'remix-run/remix' &&
!contains(github.ref, 'nightly')
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6c256d2

Please sign in to comment.