mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-13 09:50:45 -05:00
22 lines
496 B
YAML
22 lines
496 B
YAML
name: SPT Release Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
Build Server:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: refringe/spt-build-environment:1.0.3
|
|
|
|
steps:
|
|
- name: Checkout Server Project
|
|
run: git clone https://dev.sp-tarkov.com/SPT-AKI/Server.git --branch 3.8.0-BE --depth 1 /workspace/server
|
|
|
|
- name: Pull Server LFS Files
|
|
run: git lfs pull && git lfs ls-files
|
|
working-directory: /workspace/server
|