diff --git a/.github/workflows/publish_gem.yml b/.github/workflows/publish_gem.yml index 7137db2..e0434eb 100644 --- a/.github/workflows/publish_gem.yml +++ b/.github/workflows/publish_gem.yml @@ -25,10 +25,10 @@ jobs: mkdir -p $HOME/.gem touch $HOME/.gem/credentials chmod 0600 $HOME/.gem/credentials - printf -- "---\n:github: ${GH_PACKAGES_TEMP_TOKEN}\n" > $HOME/.gem/credentials + printf -- "---\n:github: ${GITHUB_TOKEN}\n" > $HOME/.gem/credentials cat $HOME/.gem/credentials gem push --verbose --key github --host https://rubygems.pkg.github.com/${OWNER} biscuit-0.2.0.gem env: - GH_PACKAGES_TEMP_TOKEN: "${{ secrets.GH_PACKAGES_TEMP_TOKEN }}" + GITHUB_TOKEN: "${{ secrets.GH_PACKAGES_TEMP_TOKEN }}" OWNER: "UserTestingEnterprise" continue-on-error: true