From 6edc955aa0930e60fa9fdcabc8b315529ded454c Mon Sep 17 00:00:00 2001 From: magmaus3 Date: Sat, 10 Feb 2024 12:37:41 +0100 Subject: [PATCH] ci: modify for revenge builds --- .github/workflows/build.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90eccb8..04b3606 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: push: - branches: [rewrite] + branches: [main] jobs: build: @@ -12,20 +12,19 @@ jobs: - uses: actions/checkout@v3 - uses: actions/checkout@v3 with: - repository: "vendetta-mod/builds" + repository: "revenge-mod/builds" path: "builds" - token: ${{ secrets.BEEF_TOKEN }} - - uses: actions/setup-node@v3 - with: - node-version: 16 + # TODO: replace with gh equivelants before opening a PR + ssh-key: ${{ secrets.BUILDS_SSH_PRIVKEY }} + ssh-known-hosts: 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILzaDn52MW7i6krceJeGIv20XkzVz+VRYS8FWyh+pXhf' + - uses: oven-sh/setup-bun@v1 - name: Install dependencies run: | - npm i -g pnpm - pnpm i + bun i - name: Build - run: pnpm build + run: bun run build - name: Push builds run: | @@ -38,7 +37,8 @@ jobs: git commit -m "Build $GITHUB_SHA" || exit 0 git push - - name: Purge CDN cache - run: | - curl https://purge.jsdelivr.net/gh/vendetta-mod/builds + ### NOTE: temporarily commented out since we're not on github + # - name: Purge CDN cache + # run: | + # curl https://purge.jsdelivr.net/gh/vendetta-mod/builds