BC-7854 - split Ansible Jobs by Tags (#21) #17
Workflow file for this run
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 and push Docker Image on Tag | |
on: | |
push: | |
tags: | |
- '[0-9]*' | |
jobs: | |
build_and_push_docker: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docker meta Service Name for docker hub | |
id: docker_meta_img_hub | |
uses: docker/metadata-action@v5 | |
with: | |
images: docker.io/schulcloud/version-aggregator, quay.io/schulcloudverbund/version-aggregator | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Log into docker registry | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Log into quay registry | |
uses: docker/login-action@v3 | |
with: | |
registry: quay.io | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_TOKEN }} | |
- name: Build and push ${{ github.repository }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: true | |
pull: true | |
tags: ${{ steps.docker_meta_img_hub.outputs.tags }} | |
labels: ${{ steps.docker_meta_img_hub.outputs.labels }} |