From e32ff8fa057a25ce3382a49689a988e506286e93 Mon Sep 17 00:00:00 2001 From: Arwyn <10365998+ArwynFr@users.noreply.github.com> Date: Tue, 30 May 2023 10:33:51 +0200 Subject: [PATCH] fix(newVersionTags): missing gh token (#21) --- new-versionTags/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/new-versionTags/action.yml b/new-versionTags/action.yml index 11239a0..ef1fb53 100644 --- a/new-versionTags/action.yml +++ b/new-versionTags/action.yml @@ -14,6 +14,8 @@ runs: - name: Add major and minor tags shell: pwsh + env: + GH_TOKEN: ${{ github.token }} run: | $release = (gh release view --json tagName) | convertfrom-json $version = [semver]::new($release.tagName)