Skip to content

Commit

Permalink
Merge pull request #294 from pulumi/update-github-actions-workflows-7
Browse files Browse the repository at this point in the history
Update GitHub Actions workflows.
  • Loading branch information
guineveresaenger committed Feb 23, 2022
2 parents 93d3888 + 0f6837f commit b4153b1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -425,6 +425,10 @@ jobs:
author_name: Failure in publishing SDK
fields: repo,commit,author,action
status: ${{ job.status }}
- if: success() && github.event_name == 'push'
name: Add SDK version tag
run: git tag sdk/${{ github.ref_name }} && git push origin sdk/${{ github.ref_name
}}
strategy:
fail-fast: true
matrix:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/master.yml
Expand Up @@ -425,6 +425,10 @@ jobs:
author_name: Failure in publishing SDK
fields: repo,commit,author,action
status: ${{ job.status }}
- if: success() && github.event_name == 'push'
name: Add SDK version tag
run: git tag sdk/${{ github.ref_name }} && git push origin sdk/${{ github.ref_name
}}
strategy:
fail-fast: true
matrix:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/prerelease.yml
Expand Up @@ -371,6 +371,10 @@ jobs:
author_name: Failure in publishing SDK
fields: repo,commit,author,action
status: ${{ job.status }}
- if: success() && github.event_name == 'push'
name: Add SDK version tag
run: git tag sdk/${{ github.ref_name }} && git push origin sdk/${{ github.ref_name
}}
strategy:
fail-fast: true
matrix:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -383,6 +383,10 @@ jobs:
author_name: Failure in publishing SDK
fields: repo,commit,author,action
status: ${{ job.status }}
- if: success() && github.event_name == 'push'
name: Add SDK version tag
run: git tag sdk/${{ github.ref_name }} && git push origin sdk/${{ github.ref_name
}}
strategy:
fail-fast: true
matrix:
Expand Down

0 comments on commit b4153b1

Please sign in to comment.