Merge pull request #1141 from k7hpn/fix/bootstrap-5 #1609
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: "Build - action" | |
on: [push, pull_request] | |
jobs: | |
build-docker-image: | |
name: "GRA Docker" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run build.bash | |
env: | |
BLD_DOCKER_IMAGE: gra | |
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@v4 | |
with: | |
name: Great Reading Adventure | |
path: package/GreatReadingAdventure-*.zip | |
if-no-files-found: ignore |