Skip to content

Commit

Permalink
chore: Update podman.yml workflow conditions for prod environment
Browse files Browse the repository at this point in the history
  • Loading branch information
drikusroor committed May 27, 2024
1 parent ff86a3c commit 65c597a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ jobs:
environment: Production
runs-on: PRD

# this job runs only on tags
if: github.ref == 'refs/tags/*' || github.event_name == 'release'
# this job runs only on tags or when a release is created, or when manually triggered for a tag
if: github.ref == 'refs/tags/*' || github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/tags/*')
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
Expand Down

0 comments on commit 65c597a

Please sign in to comment.