-
Notifications
You must be signed in to change notification settings - Fork 399
47 lines (46 loc) · 1.41 KB
/
upload-game-installers.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
name: Package and Upload Game Installers
on:
push:
branches:
- master
paths:
- 'build.gradle'
- 'game-app/**'
- 'http-clients/**'
- 'lib/**'
- 'servers/*/client/**'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: Ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Fetch depth of 0 is needed so we checkout the full revision history
# The current revision count will be used as our build-number
fetch-depth: '0'
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 11
- name: Build Installers
run: ./game-app/run/package
env:
INSTALL4J_LICENSE: ${{ secrets.INSTALL4J_LICENSE }}
- name: set build version variables
run: |
BUILD_VERSION=$(game-app/run/.build/get-build-version)
echo "build_version=$BUILD_VERSION" | tee -a $GITHUB_ENV
echo "release_name=$(date +%Y-%B-%d) - $BUILD_VERSION" | tee -a $GITHUB_ENV
- name: Create Github Release
uses: ncipollo/release-action@v1
with:
artifacts: build/artifacts/*
tag: ${{ env.build_version }}
name: ${{ env.release_name }}
prerelease: true
commit: ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}