Update release.yml #2
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 Linux | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install CMake | |
run: sudo apt-get update && sudo apt-get install -y cmake | |
- name: Build project | |
run: | | |
cd Builds/LinuxMakefile | |
CONFIG=Release make |