Skip to content

Commit 2811b3f

Browse files
committed
Elixir build script to export releases.
* linux * windows
1 parent e10fc50 commit 2811b3f

30 files changed

+1804
-450
lines changed

.github/workflows/release.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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: windows-latest
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
20+
- name: Install unzip
21+
run: choco install unzip
22+
23+
- name: Set up Elixir
24+
uses: erlef/setup-beam@v1
25+
with:
26+
elixir-version: '1.12'
27+
otp-version: '24.0'
28+
29+
- name: Run build script
30+
run: |
31+
elixir --sname build -r buildscript.iex -e "BuildScript.all"
32+
33+
- name: Archive artifacts
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: build-artifacts
37+
path: export/export_*

.gitignore

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

1616
export/
17+
18+
addons/vsk_version/build_constants.gd.uid
19+
20+
addons/vsk_version/build_constants.gd
21+
22+
addons/vsk_version/vsk_version.gd.uid
23+
24+
commandlinetools-linux-8092744_latest.zip
25+
26+
jdk/
27+
28+
cmdline-tools/
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)