Build using GitHub Actions
This commit is contained in:
parent
35fbefc509
commit
f52c279fcd
32
.github/workflows/fox32rom-unstable.yml
vendored
Normal file
32
.github/workflows/fox32rom-unstable.yml
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
name: fox32rom Unstable
|
||||
|
||||
jobs:
|
||||
fox32rom-unstable-linux:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Download latest fox32asm artifact
|
||||
uses: dawidd6/action-download-artifact@v2
|
||||
with:
|
||||
repo: fox32-arch/fox32asm
|
||||
workflow: fox32asm-unstable-linux.yml
|
||||
workflow_conclusion: success
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
chmod +x fox32asm/fox32asm
|
||||
fox32asm/fox32asm main.asm fox32.rom
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: fox32.rom
|
||||
path: fox32.rom
|
Loading…
Reference in New Issue
Block a user