-
-
Notifications
You must be signed in to change notification settings - Fork 19
62 lines (61 loc) · 1.68 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build Luxtorpeda
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
env:
CARGO_HOME: ./cargo
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain install 1.77.1 --profile minimal --no-self-update
rustup default 1.77.1
shell: bash
- name: Use rust cache
uses: Swatinem/rust-cache@v2
- name: Install Deps
run: sudo apt-get update && sudo apt-get -y install clang libsdl2-dev
shell: bash
- name: Install Godot
uses: chickensoft-games/setup-godot@v2
with:
version: 4.2.1
use-dotnet: false
include-templates: true
- name: Build
run: make release GODOT=godot
- name: Package
run: make version=${{ github.ref_name }} luxtorpeda.tar.xz GODOT=godot
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: luxtorpeda.tar.xz
path: ./luxtorpeda.tar.xz
deploy:
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: luxtorpeda.tar.xz
path: ./
- name: Rename Artifact for Release Prep
run: mv luxtorpeda.tar.xz luxtorpeda-${{ github.ref_name }}.tar.xz
- name: Create Release
id: create_release
uses: softprops/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
draft: false
prerelease: false
generate_release_notes: true
files: luxtorpeda-${{ github.ref_name }}.tar.xz