Build and publish base images #125
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 and publish base images | |
| on: | |
| workflow_dispatch: {} | |
| push: | |
| branches: [ main ] | |
| schedule: | |
| # Weekly on Tuesdays at 9am PST | |
| - cron: "0 17 * * 2" | |
| jobs: | |
| build-and-publish-images: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| LISP_IMPLEMENTATION: ["sbcl", "ccl"] | |
| env: | |
| ALLEGRO_LICENSE: ${{ secrets.ALLEGRO_LICENSE }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and publish the Docker image | |
| run: | | |
| docker build ${{ matrix.LISP_IMPLEMENTATION }} --build-arg ALLEGRO_LICENSE --tag ghcr.io/coalton-lang/${{ matrix.LISP_IMPLEMENTATION }}-base:latest | |
| docker push ghcr.io/coalton-lang/${{ matrix.LISP_IMPLEMENTATION }}-base:latest |