Skip to content

Commit 281925e

Browse files
committed
Elixir build script to export releases.
1 parent e10fc50 commit 281925e

28 files changed

+1756
-435
lines changed

.github/workflows/release.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*.*.*'
7+
branches:
8+
- main
9+
- master
10+
pull_request:
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Elixir
21+
uses: erlef/setup-beam@v1
22+
with:
23+
elixir-version: '1.12'
24+
otp-version: '24.0'
25+
26+
- name: Run build script
27+
run: |
28+
elixir --sname build -r buildscript.iex -e 'BuildScript.all'
29+
30+
- name: Archive artifacts
31+
uses: actions/upload-artifact@v4
32+
with:
33+
name: build-artifacts
34+
path: export/

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,7 @@ data_*/
1414
.DS_Store
1515

1616
export/
17+
18+
addons/vsk_version/build_constants.gd.uid
19+
20+
addons/vsk_version/build_constants.gd
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://bjpqewbtgif6n

addons/GPUTrail-main/plugin.gd.uid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://dtvbu6i7jdfpp
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://nqhuvjyl5bf4
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://b35htbko4hv85
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://bhvqwircniboq
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://dioc7tw6snepa
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://b7vj4bp81hjsh
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
uid://18xcph2o0pci

0 commit comments

Comments
 (0)