From f107c960655012793eefe66207a872dabd9decd4 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Mon, 8 Feb 2021 15:51:58 -0800 Subject: [PATCH] fix(releases): Add missing token for fake release tag (#497) --- .github/workflows/create-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 58d7a7220..68760ebf9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -34,8 +34,11 @@ jobs: git config --global user.name "Fake Tag Action" git config --global user.email "hi@modernuo.com" git checkout ${{ steps.last_release.outputs.release }} - git tag -f v0.1.0 -m "Fake release" + git tag -fa v0.1.0 -m "Fake release" + git push --follow-tags git checkout - + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Conventional Changelog id: changelog uses: TriPSs/conventional-changelog-action@v3