Skip to content

Commit

Permalink
feat(modules): tagged release (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgeers authored Nov 11, 2024
1 parent d344336 commit 92f30f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-modules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
push:
branches:
- main
tags:
- 'v**'
paths:
- 'modules/**'

Expand Down Expand Up @@ -70,4 +72,4 @@ jobs:
working-directory: modules
env:
S3_BUCKET: cf-templates-cloudvision-ci
S3_PREFIX: ${{ github.event_name == 'push' && 'main' || format('pr/{0}', github.event.pull_request.number)}}
S3_PREFIX: ${{ github.event_name == 'push' && ((contains(github.ref, '/tags/v') && github.ref_name) || 'main') || format('pr/{0}', github.event.pull_request.number)}}

0 comments on commit 92f30f5

Please sign in to comment.