mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2024-11-14 19:25:16 -05:00
suffering
This commit is contained in:
parent
918c05b0ed
commit
72131af794
2 changed files with 2 additions and 2 deletions
2
.github/actions/setup-haxe/action.yml
vendored
2
.github/actions/setup-haxe/action.yml
vendored
|
@ -78,7 +78,7 @@ runs:
|
|||
key="credential.https://github.com"
|
||||
git config --list --show-origin --show-scope
|
||||
if [ ! -z "${{ inputs.gh-token }}" ]; then
|
||||
git config --global "credential.helper" 'cache --timeout=3600'
|
||||
git config --global "credential.helper" "store --file=/tmp/git-credentials"
|
||||
git config --global "$key.username" "git"
|
||||
git config --global "$key.password" "${{ inputs.gh-token }}"
|
||||
fi
|
||||
|
|
2
.github/workflows/build-game.yml
vendored
2
.github/workflows/build-game.yml
vendored
|
@ -105,7 +105,7 @@ jobs:
|
|||
name: Install dependencies
|
||||
run: |
|
||||
key="credential.https://github.com"
|
||||
git config --global "credential.helper" 'cache --timeout=3600'
|
||||
git config --global "credential.helper" "store --file=/tmp/git-credentials"
|
||||
git config --global "$key.username" "git"
|
||||
git config --global "$key.password" "${{ steps.app_token.outputs.token }}"
|
||||
haxelib --debug git funkVis https://github.com/FunkinCrew/funkVis backend-rework
|
||||
|
|
Loading…
Reference in a new issue