Equicord/.github/workflows/build.yml

112 lines
3.7 KiB
YAML
Raw Normal View History

2024-07-19 05:44:37 -04:00
name: Release
on:
push:
branches:
- main
paths:
- .github/workflows/build.yml
- src/**
- browser/**
- scripts/build/**
- package.json
2022-12-02 08:21:44 -05:00
- pnpm-lock.yaml
env:
2022-10-13 18:12:30 -04:00
FORCE_COLOR: true
2024-07-18 23:54:25 -04:00
GITHUB_TOKEN: ${{ secrets.ETOKEN }}
jobs:
2024-07-18 23:54:25 -04:00
DetermineRunner:
name: Determine Runner
runs-on: ubuntu-latest
2024-07-18 23:54:25 -04:00
outputs:
runner: ${{ steps.set-runner.outputs.runner }}
steps:
- name: Determine which runner to use
id: set-runner
uses: benjaminmichaelis/get-soonest-available-runner@v1.1.0
with:
primary-runner: "self-hosted"
fallback-runner: "ubuntu-latest"
min-available-runners: 1
github-token: ${{ env.GITHUB_TOKEN }}
Build:
name: Build Equicord
needs: DetermineRunner
runs-on: ${{ needs.DetermineRunner.outputs.runner}}
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 18:12:30 -04:00
- name: Build
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
2024-07-18 23:54:25 -04:00
- name: Generate Equicord plugin list
run: pnpm generateEquicordPluginJson dist/equicordplugins.json
2024-07-17 22:34:09 -04:00
- name: Collect files to be released
2022-12-01 13:16:09 -05:00
run: |
2024-07-17 22:34:09 -04: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
for file in equibop/*; do
filename=$(basename "$file")
cp "$file" "release/equicordDesktop${filename^}"
done
2024-07-17 22:34:09 -04:00
2024-07-19 16:57:40 -04:00
find release -size 0 -delete
2024-07-17 22:34:09 -04:00
rm release/package.json
2024-07-19 17:03:49 -04:00
rm release/*.map
2022-12-01 13:16:09 -05:00
2024-07-18 23:54:25 -04:00
- name: Upload Equicord
if: github.repository == 'Equicord/Equicord'
run: |
2024-07-18 23:57:56 -04:00
gh release upload latest --clobber dist/release/*
2024-07-18 23:54:25 -04:00
- name: Upload Plugins JSON to Ignore repo
if: github.repository == 'Equicord/Equicord'
run: |
2024-07-18 23:54:25 -04:00
git config --global user.name "$USERNAME"
git config --global user.email "78185467+thororen1234@users.noreply.github.com"
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
cd upload
rm plugins.json
cp -r ../dist/equicordplugins.json plugins.json
git add -A
git commit -m "Plugins for https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
git push --force https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git
env:
2024-07-18 23:54:25 -04:00
API_TOKEN: ${{ secrets.ETOKEN }}
GH_REPO: Equicord/Equibored
USERNAME: thororen1234