ci: app_id -> app-id

This commit is contained in:
ooks-io 2025-01-19 22:00:37 +11:00
parent b940df6af7
commit e0fc5903cd

View file

@ -21,13 +21,13 @@ jobs:
id: generate-token id: generate-token
uses: actions/create-github-app-token@v1 uses: actions/create-github-app-token@v1
with: with:
app_id: ${{ vars.APP_ID }} app-id: ${{ vars.APP_ID }} # Updated input name
private_key: ${{ secrets.APP_PRIVATE_KEY }} private-key: ${{ secrets.APP_PRIVATE_KEY }} # Updated input name
repositories: repositories:
- name: Setup Git Config - name: Setup Git Config
run: | run: |
git config --global url."https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/".insteadOf "git+ssh://git@github.com/" git config --global url."https://x-access-token:${{ steps.generate-token.outputs.token }}@github.com/".insteadOf "git+ssh://git@github.com/"
- name: Setup Nix - name: Setup Nix
uses: DeterminateSystems/nix-installer-action@main uses: DeterminateSystems/nix-installer-action@main