Skip to content

Commit

Permalink
changed deploy conditions to tag OR push to master
Browse files Browse the repository at this point in the history
  • Loading branch information
Samkeer1 committed Apr 22, 2024
1 parent 1bb0336 commit be9b6f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: Deploy
on:
push:
tags: [ 'v*.*.*' ]
branches: master

jobs:
test:
uses: ./.github/workflows/test.yml
deploy:
needs: [test]
if: ${{ github.ref_name == 'master' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit be9b6f1

Please sign in to comment.