19 lines
No EOL
400 B
YAML
19 lines
No EOL
400 B
YAML
name: Main
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
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: build/crafter-build |