diff --git a/.github/workflows/push-image.yml b/.github/workflows/push-image.yml new file mode 100644 index 0000000..429f7ff --- /dev/null +++ b/.github/workflows/push-image.yml @@ -0,0 +1,36 @@ +--- +name: "Build image and push it to registry" + +on: + push: + branches: + - 'development' + +jobs: + push-image: + runs-on: ubuntu-22.04 + permissions: + contents: read + packages: write + steps: + - name: Check out Yoda repository + uses: actions/checkout@v3 + with: + path: yoda + repository: UtrechtUniversity/yoda + ref: development + + - name: Authenticate to the container registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v4 + with: + context: yoda/docker/images/yoda_web_mock + file: yoda/docker/images/yoda_web_mock/Dockerfile + push: true + tags: ghcr.io/utrechtuniversity/yoda-web-mock:dev-1.9