diff options
author | Ven <vendicated@riseup.net> | 2022-12-21 22:43:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-21 22:43:54 +0100 |
commit | 259f0284f0c5442d3743614975f583aff80e1b80 (patch) | |
tree | 77bb8d8f1938236e0a0dd985fd7bbb2515141262 | |
parent | cb9eb1f772f478d84194186fea16bc7c8945b15c (diff) | |
download | Vencord-259f0284f0c5442d3743614975f583aff80e1b80.tar.gz Vencord-259f0284f0c5442d3743614975f583aff80e1b80.tar.bz2 Vencord-259f0284f0c5442d3743614975f583aff80e1b80.zip |
Update build.yml
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 70f50a9..6341c48 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,7 +68,7 @@ jobs: git config --global user.name "$USERNAME" git config --global user.email actions@github.com - git clone "https://$USERNAME:$API_TOKEN@github.com/$GH_REPO" upload + git clone "https://oauth2:$API_TOKEN@github.com/$GH_REPO" upload cd upload shopt -s dotglob rm -rf * @@ -76,7 +76,7 @@ jobs: git add -A git commit -m "Builds for https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA" - git push --force https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git main + git push --force https://oauth2:$API_TOKEN@github.com/$GH_REPO.git main env: API_TOKEN: ${{ secrets.BUILDS_TOKEN }} GLOBIGNORE: .git:.gitignore:README.md:LICENSE |