Skip to content

Build - Linux

Build - Linux #12

Workflow file for this run

name: Build - Linux
on: workflow_dispatch
env:
# Path to the solution file relative to the root of the project
MAKEFILE_PATH: 'make/mp4muxer/linux_amd64/'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Build
run: |
cd ${{env.MAKEFILE_PATH}}
make
- name: Upload a binary as artifact
uses: actions/upload-artifact@v3
with:
name: mp4muxer-linux
path: ${{env.MAKEFILE_PATH}}mp4muxer_release