hansbonini is building Sega Genesis assembler code #10
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: build-sega-genesis-asm-action | |
run-name: ${{ github.actor }} is building Sega Genesis assembler code | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
with: | |
# Target architecture for Go to use. Examples: x86, x64. Will use system architecture by default. | |
architecture: windows/amd64 | |
- name: Create Build Directory | |
run: mkdir ${{ github.workspace }}/build | |
- name: Execute asm68k | |
run: make WORKSPACE=${{ github.workspace }} build | |