From c422dddb99080912542342f1dfeed9804812c4e4 Mon Sep 17 00:00:00 2001 From: Abdelrahman Shawki Hassan Date: Wed, 28 Aug 2024 10:12:37 +0200 Subject: [PATCH] fix: use explicit branch name --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1b7e562..9411133c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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