1
0
mirror of https://github.com/bitwarden/help synced 2025-12-26 05:03:21 +00:00

access token

This commit is contained in:
Kyle Spearrin
2020-02-14 13:07:45 -05:00
parent 0fc9db81f5
commit 9e27be15f0

View File

@@ -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"