21 lines
No EOL
378 B
YAML
21 lines
No EOL
378 B
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Prepare
|
|
run: sudo apt install clang lld
|
|
- name: Build
|
|
run: ./build.sh
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
files: ./bin/crafter-build |