mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05:00
Devbuilds
This commit is contained in:
parent
4d0152b1c2
commit
7f0d90f9ba
1 changed files with 9 additions and 2 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -3,6 +3,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
env:
|
||||
FORCE_COLOR: true
|
||||
GITHUB_TOKEN: ${{ secrets.ETOKEN }}
|
||||
|
@ -30,7 +31,7 @@ jobs:
|
|||
run: pnpm buildWebStandalone
|
||||
|
||||
- name: Build
|
||||
run: pnpm build --standalone
|
||||
run: pnpm buildStandalone
|
||||
|
||||
- name: Generate plugin list
|
||||
run: pnpm generatePluginJson dist/plugins.json dist/plugin-readmes.json
|
||||
|
@ -65,10 +66,16 @@ jobs:
|
|||
rm release/package.json
|
||||
rm release/*.map
|
||||
|
||||
- name: Upload Equicord
|
||||
- name: Upload Equicord Stable
|
||||
if: ${{ github.event_name == 'push' }}
|
||||
run: |
|
||||
gh release upload latest --clobber dist/release/*
|
||||
|
||||
- name: Upload Equicord Dev
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
run: |
|
||||
gh release upload devbuild --clobber dist/release/*
|
||||
|
||||
- name: Upload Plugins JSON to Equibored repo
|
||||
run: |
|
||||
git config --global user.name "$USERNAME"
|
||||
|
|
Loading…
Reference in a new issue