From 95e7255abdf14ac3cffeb0889bf554628e714044 Mon Sep 17 00:00:00 2001 From: John Boyes Date: Wed, 29 Jul 2020 09:50:22 +0700 Subject: [PATCH] Fix bug in release creation process (#2) The process was set to trigger on the `master` branch, but the main branch in this repository is called `main`. --- .github/workflows/github_tag_and_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github_tag_and_release.yml b/.github/workflows/github_tag_and_release.yml index 779a34d..69a18b0 100644 --- a/.github/workflows/github_tag_and_release.yml +++ b/.github/workflows/github_tag_and_release.yml @@ -14,7 +14,7 @@ jobs: - name: Tag uses: K-Phoen/semver-release-action@v1.3.1 with: - release_branch: master + release_branch: main release_strategy: tag env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}