-
-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (35 loc) · 1.1 KB
/
release.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
on:
push:
tags:
- 'v*'
name: Create Release
jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: true
submodules: true
- name: Checkout submodules
shell: bash
run: |
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Create archive
shell: bash
run: |
rm -rf .git/
tar cfJ untitled-game-system-manager.tar.xz . || echo "Might have failed"
- name: Create Release
uses: softprops/action-gh-release@master
with:
body: |
Check our discord for patch notes: https://discord.gg/4kyWu2Vu
More on what is done this month can be found on the latest newsletter entry: https://madladsquad.com/#monthly-newsletter
draft: false
prerelease: false
files: untitled-game-system-manager.tar.xz
generate_release_notes: false