Skip to content

Commit

Permalink
Updated Workflow #skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Savy011 committed Jun 9, 2023
1 parent 13d0c5c commit 3e06647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
start: npm run start-prod
wait-on: http://localhost:8080
- name: Setting Up Deployment
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && !contains(github.event.head_commit.message, '#skip') }}
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploying to fly.io
if: ${{ github.event_name == 'push' }}
Expand All @@ -45,7 +45,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Bumping version and push tag
if: ${{ github.event_name == 'push' }}
if: ${{ github.event_name == 'push' && !contains(github.event.head_commit.message, '#skip') }}
uses: anothrNick/github-tag-action@1.64.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 3e06647

Please sign in to comment.