mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 06:14:36 +00:00
fix(ci): priv repo auth, ii. (#509)
This commit is contained in:
parent
826199c055
commit
71ea913f0a
4
.github/actions/setup-haxe/action.yml
vendored
4
.github/actions/setup-haxe/action.yml
vendored
|
@ -75,9 +75,9 @@ runs:
|
|||
name: Install dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
git config --global url.https://x-access-token:${{ inputs.gh-token }}@github.com/.insteadOf https://github.com/
|
||||
git config --global 'url.https://x-access-token:${{ inputs.gh-token }}@github.com/.insteadOf' https://github.com/
|
||||
haxelib --global run hmm install -q
|
||||
git config --global --unset url.https://x-access-token:${{ inputs.gh-token }}@github.com/.insteadOf
|
||||
git config --global --unset 'url.https://x-access-token:${{ inputs.gh-token }}@github.com/.insteadOf'
|
||||
echo "TIMER_DONE=$(date +%s)" >> "$GITHUB_ENV"
|
||||
|
||||
# by default use a shared hxcpp cache
|
||||
|
|
2
.github/workflows/build-game.yml
vendored
2
.github/workflows/build-game.yml
vendored
|
@ -105,7 +105,7 @@ jobs:
|
|||
- if: ${{ steps.cache-hmm.outputs.cache-hit != 'true' }}
|
||||
name: Install dependencies
|
||||
run: |
|
||||
git config --global url.https://x-access-token:${{ steps.app_token.outputs.token }}@github.com/.insteadOf https://github.com/
|
||||
git config --global 'url.https://x-access-token:${{ steps.app_token.outputs.token }}@github.com/.insteadOf' https://github.com/
|
||||
haxelib --global run hmm install -q
|
||||
|
||||
- if: ${{ matrix.target != 'html5' }}
|
||||
|
|
Loading…
Reference in a new issue