forked from artemiswkearney/CustomJSONData
-
Notifications
You must be signed in to change notification settings - Fork 11
31 lines (28 loc) · 762 Bytes
/
build.yml
File metadata and controls
31 lines (28 loc) · 762 Bytes
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
name: Build
on:
push:
branches: [ "master" ]
paths:
- .github/workflows/build.yml
- CustomJSONData/**
- CustomJSONData.sln
jobs:
build:
name: Build
strategy:
matrix:
game-version: [ 1.29.1, 1.34.2, 1.37.1, 1.39.1, 1.40.0 ]
uses: Aeroluna/workflows/.github/workflows/bs-build-version-release.yml@main
with:
project-path: CustomJSONData/CustomJSONData.csproj
game-version: ${{ matrix.game-version }}
secrets: inherit
create_release:
name: Create Release
needs: build
permissions:
contents: write
uses: Aeroluna/workflows/.github/workflows/bs-create-release-from-project.yml@main
with:
project-path: CustomJSONData/CustomJSONData.csproj
secrets: inherit