ATA: read status register 4 times before checking value #48
Workflow file for this run
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: Generate release files | |
permissions: | |
contents: write | |
on: | |
push: | |
tags: | |
- "Release-**" | |
- "Dev-**" | |
workflow_dispatch: | |
jobs: | |
make_software: | |
runs-on: ubuntu-latest | |
container: liv2/amiga-gcc-amitools | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.ACCESS_TOKEN }} | |
submodules: true | |
- name: Build | |
run: | | |
git config --global --add safe.directory "*" | |
git fetch --prune --unshallow --tags | |
make clean disk lha | |
- uses: actions/upload-artifact@master | |
with: | |
name: software | |
path: | | |
*.rom | |
**/*.adf | |
build/*.lha | |
if-no-files-found: error | |
draft_release: | |
runs-on: ubuntu-latest | |
needs: | |
- make_software | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v3 | |
with: | |
path: artifacts | |
- name: release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: | | |
artifacts/software/*.rom | |
artifacts/software/**/*.adf | |
artifacts/software/**/*.lha |