arrow button layout tweak #56
This file contains hidden or 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: xsysinfo software CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: stefanreinauer/amiga-gcc:gcc-v13.3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| fetch-depth: 0 | |
| - name: Mark git directory as safe | |
| run: git config --global --add safe.directory '*' | |
| - name: Building all targets | |
| run: make all | |
| - name: Archive CI artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Xsysinfo Program | |
| path: ${{ github.workspace }}/xSysInfo | |
| - name: Find ADF filename | |
| id: adf | |
| run: echo "filename=$(ls xsysinfo-*.adf)" >> $GITHUB_OUTPUT | |
| - name: Archive CI artifacts (ADF) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ${{ steps.adf.outputs.filename }} | |
| path: ${{ github.workspace }}/${{ steps.adf.outputs.filename }} |