Add error catching for vehicle spawns in admiral #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arma | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Validate Config | |
run: python3 tools/config_style_checker.py | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Setup HEMTT | |
uses: arma-actions/hemtt@v1 | |
- name: Run HEMTT build | |
run: hemtt build | |
- name: Rename build folder | |
run: mv .hemttout/build .hemttout/@ark_inhouse | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ark_inhouse_${{ github.sha }}-nobin | |
path: .hemttout/@* | |
include-hidden-files: true # Because .hemttout is a hidden directory |