Merge pull request #319 from m0n0chr0m3/master #656
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: Publish | |
on: [push] | |
jobs: | |
build: | |
name: ${{ matrix.image }} | |
strategy: | |
fail-fast: false | |
matrix: | |
image: [assembly, bash, c, compilers, csharp, haskell, html, java, java21, nodejs, prolog, python, r, scheme, sqlite, tested] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Publish to Registry | |
uses: elgohr/Publish-Docker-Github-Action@v4 | |
with: | |
name: dodona/dodona-${{ matrix.image }} | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
dockerfile: dodona-${{ matrix.image }}.dockerfile | |
snapshot: true |