Skip to content

Update release.yml

Update release.yml #2

Workflow file for this run

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