Skip to content

feat: upload build artifact instead of pushing to repo #22

feat: upload build artifact instead of pushing to repo

feat: upload build artifact instead of pushing to repo #22

Workflow file for this run

name: AE Docs Updater Program Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Compile
run: bun build --compile --minify --env=disable main.ts --outfile program
- name: Upload build
uses: actions/upload-artifact@v4
with:
path: program
overwrite: true