2022-12-02 08:21:44 -05:00
|
|
|
name: Build DevBuild
|
2022-10-11 09:19:04 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-10-26 07:03:53 -04:00
|
|
|
paths:
|
|
|
|
- .github/workflows/build.yml
|
|
|
|
- src/**
|
|
|
|
- browser/**
|
|
|
|
- scripts/build/**
|
|
|
|
- package.json
|
2022-12-02 08:21:44 -05:00
|
|
|
- pnpm-lock.yaml
|
2022-10-11 09:19:04 -04:00
|
|
|
env:
|
2022-10-13 18:12:30 -04:00
|
|
|
FORCE_COLOR: true
|
2022-10-11 09:19:04 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
|
|
|
|
2022-12-02 08:21:44 -05:00
|
|
|
- name: Use Node.js 19
|
2022-10-26 07:03:53 -04:00
|
|
|
uses: actions/setup-node@v3
|
2022-10-11 09:19:04 -04:00
|
|
|
with:
|
2022-10-26 07:03:53 -04:00
|
|
|
node-version: 19
|
2022-10-11 09:19:04 -04:00
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Build web
|
2022-11-07 15:29:31 -05:00
|
|
|
run: pnpm buildWeb --standalone
|
2022-10-13 18:12:30 -04:00
|
|
|
|
2022-10-11 09:19:04 -04:00
|
|
|
- name: Build
|
2022-10-23 17:23:52 -04:00
|
|
|
run: pnpm build --standalone
|
2022-10-13 18:12:30 -04:00
|
|
|
|
2023-03-22 23:37:32 -04:00
|
|
|
- name: Generate plugin list
|
2023-09-07 20:26:22 -04:00
|
|
|
run: pnpm generatePluginJson dist/plugins.json dist/plugin-readmes.json
|
2023-03-22 23:37:32 -04:00
|
|
|
|
2023-01-26 16:38:02 -05:00
|
|
|
- name: Clean up obsolete files
|
2022-12-01 13:16:09 -05:00
|
|
|
run: |
|
2023-09-18 22:15:34 -04:00
|
|
|
rm -rf dist/*-unpacked dist/monaco Vencord.user.css vencordDesktopRenderer.css vencordDesktopRenderer.css.map
|
2022-12-01 13:16:09 -05:00
|
|
|
|
2022-11-07 15:38:14 -05:00
|
|
|
- name: Get some values needed for the release
|
|
|
|
id: release_values
|
|
|
|
run: |
|
2023-06-01 16:49:15 -04:00
|
|
|
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
2022-11-07 15:38:14 -05:00
|
|
|
|
2023-01-26 16:38:02 -05:00
|
|
|
- name: Upload DevBuild as release
|
2023-06-09 15:48:18 -04:00
|
|
|
if: github.repository == 'Vendicated/Vencord'
|
2022-11-07 15:38:14 -05:00
|
|
|
run: |
|
2023-06-01 16:49:15 -04:00
|
|
|
gh release upload devbuild --clobber dist/*
|
|
|
|
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
|
2022-10-11 09:19:04 -04:00
|
|
|
env:
|
2023-06-01 16:49:15 -04:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
RELEASE_TAG: ${{ env.release_tag }}
|
2022-12-21 14:58:07 -05:00
|
|
|
|
2023-01-26 16:38:02 -05:00
|
|
|
- name: Upload DevBuild to builds repo
|
2023-06-09 15:48:18 -04:00
|
|
|
if: github.repository == 'Vendicated/Vencord'
|
2022-12-21 14:58:07 -05:00
|
|
|
run: |
|
2023-06-01 16:49:15 -04:00
|
|
|
git config --global user.name "$USERNAME"
|
|
|
|
git config --global user.email actions@github.com
|
2022-12-21 14:58:07 -05:00
|
|
|
|
2023-06-01 16:49:15 -04:00
|
|
|
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
|
|
|
|
cd upload
|
2023-01-26 16:38:02 -05:00
|
|
|
|
2023-06-01 16:49:15 -04:00
|
|
|
GLOBIGNORE=.git:.gitignore:README.md:LICENSE
|
|
|
|
rm -rf *
|
|
|
|
cp -r ../dist/* .
|
2022-12-21 14:58:07 -05:00
|
|
|
|
2023-06-01 16:49:15 -04:00
|
|
|
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
|
2022-12-21 14:58:07 -05:00
|
|
|
env:
|
2023-06-01 16:49:15 -04:00
|
|
|
API_TOKEN: ${{ secrets.BUILDS_TOKEN }}
|
|
|
|
GH_REPO: Vencord/builds
|
|
|
|
USERNAME: GitHub-Actions
|