Misc - Update logos #833
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v2 | |
- name: Validate SQF | |
run: python3 tools/sqf_validator.py | |
- name: Validate Config | |
run: python3 tools/config_style_checker.py | |
- name: Validate Stringtables | |
run: python3 tools/stringtable_validator.py | |
- name: Validate Return Types | |
run: python3 tools/return_checker.py | |
- name: Check for BOM | |
uses: arma-actions/bom-check@master | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v2 | |
- name: Build with HEMTT | |
uses: arma-actions/hemtt@master | |
with: | |
command: build --release --ci | |
- name: Set short commit hash | |
run: echo "SHA_SHORT=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: zen-${{ env.SHA_SHORT }}-nobin | |
path: releases/*/* # Upload folder to avoid double-zip artifacts |