DIR: don't display invalid data with devices #303
Workflow file for this run
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: | |
| pull_request: | |
| types: | |
| - opened | |
| - ready_for_review | |
| - reopened | |
| - synchronize | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: package install | |
| run: ./ci_prereq.sh | |
| - name: build | |
| run: ./ci_build.sh | |
| - name: test prerequisites | |
| run: ./ci_test_prereq.sh | |
| - name: test | |
| run: ./ci_test.sh | |
| - name: pages | |
| if: github.ref == 'refs/heads/master' | |
| run: | | |
| mkdir -p pub/files | |
| zip --junk-paths pub/files/comcom64.zip src/comcom64.exe | |
| zip --junk-paths pub/files/comcom32.zip 32/comcom32.exe | |
| echo '<a href="files/comcom64.zip">Latest comcom64 build</a><br>' > pub/index.html | |
| echo '<a href="files/comcom32.zip">Latest comcom32 build</a><br>' >> pub/index.html | |
| - name: deploy | |
| if: github.ref == 'refs/heads/master' | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_branch: gh-pages | |
| publish_dir: pub |