Skip to content

Commit

Permalink
fix: use explicit branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawkyZ committed Aug 28, 2024
1 parent 4d5b0d4 commit c422ddd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ env:

jobs:
build-project:
uses: snyk/snyk-visual-studio-plugin/.github/workflows/build-project.yml@${{ env.DEFAULT_BRANCH }}
uses: snyk/snyk-visual-studio-plugin/.github/workflows/build-project.yml@release/1
with:
solution-file-path: .
secrets: inherit
run-integration-tests:
needs: build-project
uses: snyk/snyk-visual-studio-plugin/.github/workflows/integration-tests.yml@${{ env.DEFAULT_BRANCH }}
uses: snyk/snyk-visual-studio-plugin/.github/workflows/integration-tests.yml@release/1
secrets: inherit
run-unit-tests:
needs: build-project
Expand Down Expand Up @@ -65,8 +65,8 @@ jobs:
- name: Create and push Git tag release
run: |
git tag ${{ needs.build-project.outputs.version }}
git push origin ${{ env.DEFAULT_BRANCH }}
git push origin ${{ env.DEFAULT_BRANCH }} --tags
git push origin release/1
git push origin release/1 --tags
- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit c422ddd

Please sign in to comment.