stadtratmonitor/.github/workflows/docker-image.yml
2023-05-04 17:50:03 +02:00

53 lines
No EOL
1.4 KiB
YAML

name: Container Image CI
on:
push:
branches: [ "rewrite-dockerfile" ]
pull_request:
branches: [ "rewrite-dockerfile" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Log in to package registry
uses: docker/login-action@v1
with:
registry: https://code.cozy.town/
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push Base image
uses: docker/build-push-action@v2
with:
context: .
file: ./container/base/Dockerfile
push: true
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-base
- name: Build and push Deploy image
uses: docker/build-push-action@v2
with:
context: .
file: ./container/deploy/Dockerfile
push: true
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-deploy
- name: Build and push Develop image
uses: docker/build-push-action@v2
with:
context: .
file: ./container/develtop/Dockerfile
push: true
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-develop
- name: Build and push Test image
uses: docker/build-push-action@v2
with:
context: .
file: ./container/test/Dockerfile
push: true
tags: code.cozy.town/codeforleipzig/stadtratmonitor:latest-test