Skip to content

Commit

Permalink
[#1518] Do not run deploy on deps/* branches.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Jan 31, 2025
1 parent cbea07f commit f9b1779
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,10 @@ jobs:

#;< DEPLOYMENT
deploy:

runs-on: ubuntu-latest
needs: build
#;< !PROVISION_USE_PROFILE
if: github.event_name != 'schedule'
if: github.event_name != 'schedule' && !startsWith(github.ref, 'refs/heads/deps/')
#;> !PROVISION_USE_PROFILE

container:
Expand Down

1 comment on commit f9b1779

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.