78 lines
2.4 KiB
YAML
78 lines
2.4 KiB
YAML
name: Build DevBuild
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- .github/workflows/build.yml
|
|
- src/**
|
|
- browser/**
|
|
- scripts/build/**
|
|
- package.json
|
|
- pnpm-lock.yaml
|
|
env:
|
|
FORCE_COLOR: true
|
|
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
|
|
|
- name: Use Node.js 19
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 19
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build web
|
|
run: pnpm buildWeb --standalone
|
|
|
|
- name: Build
|
|
run: pnpm build --standalone
|
|
|
|
- name: Generate plugin list
|
|
run: pnpm generatePluginJson dist/plugins.json
|
|
|
|
- name: Clean up obsolete files
|
|
run: |
|
|
rm -rf dist/*-unpacked Vencord.user.css vencordDesktopRenderer.css vencordDesktopRenderer.css.map
|
|
|
|
- name: Get some values needed for the release
|
|
id: release_values
|
|
run: |
|
|
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
|
|
|
- name: Upload DevBuild as release
|
|
run: |
|
|
gh release upload devbuild --clobber dist/*
|
|
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
RELEASE_TAG: ${{ env.release_tag }}
|
|
|
|
- name: Upload DevBuild to builds repo
|
|
run: |
|
|
git config --global user.name "$USERNAME"
|
|
git config --global user.email actions@github.com
|
|
|
|
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
|
|
cd upload
|
|
|
|
GLOBIGNORE=.git:.gitignore:README.md:LICENSE
|
|
rm -rf *
|
|
cp -r ../dist/* .
|
|
|
|
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
|
|
env:
|
|
API_TOKEN: ${{ secrets.BUILDS_TOKEN }}
|
|
GH_REPO: Vencord/builds
|
|
USERNAME: GitHub-Actions
|