Merge pull request #198 from polluks/typo #93
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: MacOS build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: make -C RunCPM macosx build | |
- name: copy binary to artifact folder | |
run: cp RunCPM/RunCPM output | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: runcpm-macos | |
# 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 | |