Skip to content

Add artifact to mingw build #6

Add artifact to mingw build

Add artifact to mingw build #6

Workflow file for this run

name: MSYS2 MINGW64 Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
msys2-mingw64:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: git make pkg-config mingw64/mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-portaudio bison flex zip
- name: Build with make
run: make
- name: Create zip archive
run: zip *.exe mdxtools.zip
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: mdxtools.zip
path: .