Skip to content

Commit

Permalink
Update AWS credentials build trigger
Browse files Browse the repository at this point in the history
This commit adjusts the trigger for the AWS credentials build process. It now activates not only when a new tag starting with 'creds-awssdk-v' is created, but also when changes are pushed to the 'devtekve' branch.
  • Loading branch information
devtekve committed May 11, 2024
1 parent 0d6bd3f commit c8cc552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_creds_aws_sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/creds-awssdk-v')
if: ${{ github.ref == 'refs/heads/devtekve' || startsWith(github.ref, 'refs/tags/creds-awssdk-v') }}
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit c8cc552

Please sign in to comment.