Skip to content

Merge https://github.com/MockbaTheBorg/RunCPM #5

Merge https://github.com/MockbaTheBorg/RunCPM

Merge https://github.com/MockbaTheBorg/RunCPM #5

Workflow file for this run

name: mingw build
# https://stackoverflow.com/a/75758843
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-2019
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: gcc version
run: gcc --version
- name: Build
run: make -C RunCPM mingw build
- name: Copy binary to artifact folder
run: cp RunCPM/RunCPM.exe output
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
name: runcpm-windows
# A file, directory or wildcard pattern that describes what to upload
path: output
# The desired behavior if no files are found using the provided path.
if-no-files-found: error