mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-24 15:35:11 +00:00
ok
This commit is contained in:
parent
3edbed12ad
commit
2e7bc67d18
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
||||||
- name: Upload branch release
|
- name: Upload branch release
|
||||||
if: env.devbuild_exists == 'true' && startsWith(github.ref, 'refs/heads/') && github.ref_name != 'main' && github.event.created
|
if: env.devbuild_exists == 'true' && startsWith(github.ref, 'refs/heads/') && github.ref_name != 'main' && github.event.created
|
||||||
run: |
|
run: |
|
||||||
gh release create branch-$GITHUB_REF_NAME --latest=false --prerelease --title "PreBuild $GITHUB_REF_NAME" || true
|
gh release create branch-$GITHUB_REF_NAME --latest=false --prerelease --target $GITHUB_REF_NAME --title "PreBuild $GITHUB_REF_NAME" || true
|
||||||
gh release upload branch-$GITHUB_REF_NAME --clobber dist/*
|
gh release upload branch-$GITHUB_REF_NAME --clobber dist/*
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
@ -69,7 +69,7 @@ jobs:
|
||||||
if: env.devbuild_exists == 'true' && startsWith(github.ref, 'refs/heads/') && github.event.created
|
if: env.devbuild_exists == 'true' && startsWith(github.ref, 'refs/heads/') && github.event.created
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
run: |
|
run: |
|
||||||
gh release create commit-$COMMIT_SHORT --latest=false --prerelease --title "PreBuild $COMMIT_SHORT"
|
gh release create commit-$COMMIT_SHORT --latest=false --prerelease --target $GITHUB_SHA --title "PreBuild $COMMIT_SHORT"
|
||||||
gh release upload commit-$COMMIT_SHORT --clobber dist/*
|
gh release upload commit-$COMMIT_SHORT --clobber dist/*
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue