Skip to content

Commit 191ed1c

Browse files
committed
update
1 parent df77336 commit 191ed1c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/pipeline.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Deploy app
2727
needs: [deployment_prep]
2828
runs-on: ubuntu-latest
29-
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ''), '#skip
29+
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ''), '#skip') }}
3030
steps:
3131
- uses: actions/checkout@v3
3232
- uses: superfly/flyctl-actions/setup-flyctl@master
@@ -37,12 +37,13 @@ jobs:
3737
needs: [deploy]
3838
permissions: write-all
3939
runs-on: ubuntu-latest
40-
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ''), '#skip
40+
if: ${{ github.event_name == 'push' && !contains(join(github.event.commits.*.message, ''), '#skip') }}
4141
steps:
4242
- uses: actions/checkout@v3
4343
with:
4444
fetch-depth: '0'
4545
- name: Bump version and push tag
4646
uses: anothrNick/github-tag-action@eca2b69f9e2c24be7decccd0f15fdb1ea5906598
4747
env:
48-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
DEFAULT_BUMP: 'patch'

0 commit comments

Comments
 (0)