k7hpn is running ci #309
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: ci | |
| run-name: ${{ github.actor }} is running ci | |
| on: [push, pull_request] | |
| jobs: | |
| build-docker-image: | |
| name: "GRA Docker" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run build.bash | |
| env: | |
| BLD_DOCKER_IMAGE: gra | |
| CR_HOST: ${{secrets.CR_HOST}} | |
| CR_OWNER: ${{secrets.CR_OWNER}} | |
| CR_PASSWORD: ${{secrets.CR_PASSWORD}} | |
| CR_USER: ${{secrets.CR_USER}} | |
| GHCR_OWNER: ${{secrets.GHCR_OWNER}} | |
| GHCR_PAT: ${{secrets.GHCR_PAT}} | |
| GHCR_USER: ${{secrets.GHCR_USER}} | |
| run: ./build.bash -p | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: Great Reading Adventure | |
| path: package/GreatReadingAdventure-*.zip | |
| if-no-files-found: ignore |