Skip to content

Commit

Permalink
ci: modify for revenge builds (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
magmaus3 authored Feb 10, 2024
1 parent 0755af9 commit e47c82e
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
name: Build
on:
push:
branches: [rewrite]
push:
branches: [main]

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
build:
name: Build and push
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
repository: "revenge-mod/builds"
path: "builds"
token: ${{ secrets.BUILDS_PUSH_TOKEN }}

- uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: |
bun i
- name: Build
run: bun run 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
# NOTE: Temporarily disabled, enable if needed
- name: Purge CDN cache
if: ${{ false }}
run: |
curl https://purge.jsdelivr.net/gh/vendetta-mod/builds

0 comments on commit e47c82e

Please sign in to comment.