2024-02-29 21:44:53 -05:00
|
|
|
name: SPT Release Build
|
2024-02-29 21:25:58 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
2024-02-29 21:44:53 -05:00
|
|
|
build-server:
|
2024-02-29 21:25:58 -05:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-01 11:12:38 -05:00
|
|
|
container:
|
2024-03-01 13:19:08 -05:00
|
|
|
image: refringe/spt-build-environment:1.0.4
|
2024-02-29 21:25:58 -05:00
|
|
|
|
|
|
|
steps:
|
2024-03-01 11:12:38 -05:00
|
|
|
- name: Checkout Server Project
|
2024-03-01 12:46:12 -05:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
repository: 'refringe/Server'
|
2024-03-01 13:17:36 -05:00
|
|
|
path: 'server'
|
2024-03-01 12:48:03 -05:00
|
|
|
ref: '3.8.0-BE'
|
2024-03-01 12:46:12 -05:00
|
|
|
fetch-depth: 0
|
2024-03-01 13:21:42 -05:00
|
|
|
lfs: true
|
2024-03-01 13:19:08 -05:00
|
|
|
|
|
|
|
- name: Setup Node.js
|
2024-03-01 13:21:42 -05:00
|
|
|
uses: actions/setup-node@v3
|
2024-03-01 13:19:08 -05:00
|
|
|
with:
|
|
|
|
node-version-file: ./project/package.json
|