From 9e27be15f0589ed689c95994ef1a385da4f99825 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 14 Feb 2020 13:07:45 -0500 Subject: [PATCH] access token --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 99d6f927..c92bde18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,10 +24,10 @@ jobs: - name: Set up git credentials if: github.event_name == 'push' && github.ref == 'refs/heads/master' env: - GH_TOKEN: ${{ secrets.GH_TOKEN }} + ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} run: | git config --global credential.helper store - echo "https://${GH_TOKEN}:x-oauth-basic@github.com" >> ~/.git-credentials + echo "https://${ACCESS_TOKEN}:x-oauth-basic@github.com" >> ~/.git-credentials git config --global user.email "ci@bitwarden.com" git config --global user.name "Bitwarden CI"