forge/.github/workflows/build.yml

37 lines
696 B
YAML
Raw Normal View History

2023-09-04 23:24:13 -05:00
name: ⚙️ Build Binaries
on:
workflow_call:
jobs:
build-artifact:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2023-09-04 23:24:13 -05:00
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ env.NIM_VERSION }}
- uses: goto-bus-stop/setup-zig@v2
- name: Bootstrap with installed version
run: nimble install -Y
- name: Generate build artifacts
run: nimble release
- name: Create artifact bundles
run: nimble bundle
- uses: actions/upload-artifact@v3
with:
name: artifacts
path: |
dist/*.tar.gz
dist/*.zip