Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

fix: not being able to disable dev builds #1

fix: not being able to disable dev builds

fix: not being able to disable dev builds #1

Workflow file for this run

name: Build (debug)
on:
push:
branches-ignore: [main, dev]
paths-ignore:
- "**/*.md"
- ".github/**"
workflow_dispatch:
jobs:
build:
name: Build and push
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
path: "source"
- name: Checkout builds
uses: actions/checkout@v4
with:
repository: "revenge-mod/builds"
path: "builds"
token: ${{ secrets.BUILDS_PUSH_TOKEN }}
ref: ${{ github.ref_name }}
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
working-directory: source
run: bun i
- name: CI
working-directory: source
run: bun run format
- name: Build
working-directory: source
run: bun run build-bun
- uses: actions/upload-artifact@v4
with:
name: revenge-build-debug
path: source/dist/*.js
if-no-files-found: error