Skip to content

Commit

Permalink
chore: release from release/1 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawkyZ committed Aug 28, 2024
1 parent e4b3568 commit 4d5b0d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:

env:
SOLUTION_FILE_PATH: .
DEFAULT_BRANCH: main
DEFAULT_BRANCH: release/1

jobs:
build-project:
uses: snyk/snyk-visual-studio-plugin/.github/workflows/build-project.yml@main
uses: snyk/snyk-visual-studio-plugin/.github/workflows/build-project.yml@${{ env.DEFAULT_BRANCH }}
with:
solution-file-path: .
secrets: inherit
run-integration-tests:
needs: build-project
uses: snyk/snyk-visual-studio-plugin/.github/workflows/integration-tests.yml@main
uses: snyk/snyk-visual-studio-plugin/.github/workflows/integration-tests.yml@${{ env.DEFAULT_BRANCH }}
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 main
git push origin main --tags
git push origin ${{ env.DEFAULT_BRANCH }}
git push origin ${{ env.DEFAULT_BRANCH }} --tags
- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 4d5b0d4

Please sign in to comment.