Update README.MD #63
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: Build | |
| on: | |
| push: | |
| branches: [ new ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| container: skylyrac/blocksds:slim-latest | |
| steps: | |
| - name: Clone project | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install prerequisites | |
| run: | | |
| apt-get update -y | |
| apt-get install -y --no-install-recommends python3 python3-pil python-is-python3 | |
| - name: Build | |
| run: make VERSION=git | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: NitricTracker | |
| path: | | |
| nitrictracker*.nds | |
| CHANGELOG.TXT | |
| licenses/ | |
| README.TXT |