Skip to content

Commit

Permalink
opt: workflow: Try to fix [skip post]
Browse files Browse the repository at this point in the history
  • Loading branch information
lightsummer233 committed May 25, 2024
1 parent ade64f6 commit c2a2670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
compression-level: 9

push_to_canary_channel:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && ${{ github.ref == 'refs/heads/main' && github.ref_type != 'tag' && contains(github.event.head_commit.message, '[skip post]') == false && contains(github.event.head_commit.message, 's#') == false }}
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.ref_type != 'tag' && !contains(github.event.head_commit.message, '[skip post]') && !contains(github.event.head_commit.message, 's#')
runs-on: ubuntu-latest
name: Push to Canary Channel
needs: build_app
Expand Down

0 comments on commit c2a2670

Please sign in to comment.