Skip to content

Commit

Permalink
fix: change condition for tagging generation
Browse files Browse the repository at this point in the history
  • Loading branch information
devaguia committed Jan 30, 2024
1 parent 31bb5f5 commit e790d75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd-tag-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
if: "!contains(github.event.head_commit.message, '--skip-tagging')"
if: "contains(github.event.head_commit.message, '--realease')"

runs-on: ubuntu-latest

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd-tag-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Generate github stage tag

on:
push:
branches: ["stage"]
branches: [stage]
pull_request:
branches: ["stage"]
branches: [stage]

jobs:
build:
if: "!contains(github.event.head_commit.message, '--skip-tagging')"
if: "contains(github.event.head_commit.message, '--realease')"

runs-on: ubuntu-latest

Expand Down

0 comments on commit e790d75

Please sign in to comment.