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