Vencord/.github/workflows/build.yml

84 lines
2.8 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@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
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
2022-10-13 22:12:30 +00:00
2022-12-01 18:16:09 +00:00
- name: Sign firefox extension
run: |
2022-12-02 13:21:44 +00:00
pnpx web-ext sign --api-key $WEBEXT_USER --api-secret $WEBEXT_SECRET --channel=unlisted
2022-12-01 18:16:09 +00:00
env:
WEBEXT_USER: ${{ secrets.WEBEXT_USER }}
WEBEXT_SECRET: ${{ secrets.WEBEXT_SECRET }}
- name: Build
run: pnpm build --standalone
2022-10-13 22:12:30 +00:00
2022-12-01 18:16:09 +00:00
- name: Rename extensions for more user friendliness
run: |
mv dist/*.xpi dist/Vencord-for-Firefox.xpi
mv dist/extension-v3.zip dist/Vencord-for-Chrome-and-Edge.zip
2022-12-03 12:42:46 +00:00
rm -rf dist/extension-v2-unpacked dist/extension-v2.zip
2022-12-01 18:16:09 +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
- name: Upload Devbuild as release
run: |
gh release upload devbuild --clobber dist/*
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
env:
2022-10-27 08:55:56 +00:00
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
2022-12-22 16:25:57 +00:00
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
cd upload
2022-12-21 20:12:28 +00:00
rm -rf *
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
env:
API_TOKEN: ${{ secrets.BUILDS_TOKEN }}
GLOBIGNORE: .git:.gitignore:README.md:LICENSE
GH_REPO: Vencord/builds
USERNAME: GitHub-Actions