This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
Add myself to FUNDING.yml and fix maisy's username #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [rewrite] | |
jobs: | |
build: | |
name: Build and push | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/checkout@v3 | |
with: | |
repository: "vendetta-mod/builds" | |
path: "builds" | |
token: ${{ secrets.BEEF_TOKEN }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: | | |
npm i -g pnpm | |
pnpm i | |
- name: Build | |
run: pnpm build | |
- name: Push builds | |
run: | | |
rm $GITHUB_WORKSPACE/builds/* || true | |
cp -r dist/* $GITHUB_WORKSPACE/builds || true | |
cd $GITHUB_WORKSPACE/builds | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git add . | |
git commit -m "Build $GITHUB_SHA" || exit 0 | |
git push | |
- name: Purge CDN cache | |
run: | | |
curl https://purge.jsdelivr.net/gh/vendetta-mod/builds | |