Skip to content

Commit

Permalink
Fix release pipeline (#165)
Browse files Browse the repository at this point in the history
* Bump actions/checkout from 2 to 2.3.4

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v2.3.4)

Signed-off-by: dependabot[bot] <[email protected]>

* Fix release tagging

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
BernieWhite and dependabot[bot] authored Jun 7, 2021
1 parent bc2cbd1 commit 8dc73b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .azure-pipelines/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ trigger:
tags:
include:
- 'v1.*'
- 'v0.*'

pr:
branches:
Expand Down Expand Up @@ -122,7 +123,7 @@ stages:
- stage: Stable
displayName: Stable
dependsOn: Canary
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v1.'))
condition: and(succeeded(), or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v1.'), startsWith(variables['Build.SourceBranch'], 'refs/tags/v0.')))
jobs:
- template: jobs/release.yaml
parameters:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4

- name: Run PSRule analysis
uses: Microsoft/ps-rule@main
Expand Down

0 comments on commit 8dc73b0

Please sign in to comment.