fix: use PAT for git

This commit is contained in:
Oliver Lippert 2024-02-01 15:54:28 +01:00
parent ebe8ec4bd8
commit 660fd51c5a
Signed by: oliver
GPG key ID: 4AE99C459BC7D2B3

View file

@ -10,6 +10,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
token: ${{ secrets.REPO_MAINTAINER_TOKEN }}
# TODO extract dedicated action # TODO extract dedicated action
- name: setup tea cli - name: setup tea cli
@ -36,7 +38,7 @@ jobs:
shell: bash shell: bash
env: env:
GITEA_URL: ${{ github.server_url }} GITEA_URL: ${{ github.server_url }}
GITEA_TOKEN: ${{ secrets.REPO_MAINTAINER_TOKEN }} GITEA_TOKEN: ${{ github.token }}
PROJECT_URL: ${{ github.server_url }}/${{ github.repository }} PROJECT_URL: ${{ github.server_url }}/${{ github.repository }}
run: | run: |
npm install \ npm install \