Vencord/.github/workflows/build.yml

98 lines
3.2 KiB
YAML
Raw Normal View History

2022-12-02 13:21:44 +00:00
name: Build DevBuild
on:
push:
branches:
- main
paths:
- .github/workflows/build.yml
- src/**
- browser/**
- scripts/build/**
- package.json
2022-12-02 13:21:44 +00:00
- pnpm-lock.yaml
env:
2022-10-13 22:12:30 +00:00
FORCE_COLOR: true
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3 # Install pnpm using packageManager key in package.json
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build web
run: pnpm buildWebStandalone
2022-10-13 22:12:30 +00:00
- name: Build
run: pnpm build --standalone
2022-10-13 22:12:30 +00:00
2023-03-23 03:37:32 +00:00
- name: Generate plugin list
2023-09-08 00:26:22 +00:00
run: pnpm generatePluginJson dist/plugins.json dist/plugin-readmes.json
2023-03-23 03:37:32 +00:00
2024-07-18 02:34:09 +00:00
- name: Collect files to be released
2022-12-01 18:16:09 +00:00
run: |
2024-07-18 02:34:09 +00:00
cd dist
mkdir release
cp browser/browser.* release
cp Vencord.user.{js,js.LEGAL.txt} release
# copy the plugin data jsons, the extension zips and the desktop/vesktop asars
cp *.{json,zip,asar} release
# legacy un-asared files
# FIXME: remove at some point
cp desktop/* release
for file in vesktop/*; do
filename=$(basename "$file")
cp "$file" "release/vencordDesktop${filename^}"
done
rm release/package.json
2022-12-01 18:16:09 +00:00
- name: Get some values needed for the release
id: release_values
run: |
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
2023-01-26 21:38:02 +00:00
- name: Upload DevBuild as release
if: github.repository == 'Vendicated/Vencord'
run: |
2024-07-18 02:34:09 +00:00
gh release upload devbuild --clobber dist/release/*
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_TAG: ${{ env.release_tag }}
2023-01-26 21:38:02 +00:00
- name: Upload DevBuild to builds repo
if: github.repository == 'Vendicated/Vencord'
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
2023-01-26 21:38:02 +00:00
GLOBIGNORE=.git:.gitignore:README.md:LICENSE
rm -rf *
2024-07-18 02:34:09 +00:00
cp -r ../dist/release/* .
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