Feature/SK-604 | Refactor common #363
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 containers" | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- develop | |
- master | |
release: | |
types: [published] | |
jobs: | |
build-containers: | |
runs-on: ubuntu-20.04 | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker meta fedn | |
id: meta1 | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
docker.pkg.github.com/${{ github.repository }}/fedn | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=sha | |
- name: Docker meta mnist-keras | |
id: meta2 | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
docker.pkg.github.com/${{ github.repository }}/fedn | |
tags: | | |
type=ref,event=branch,suffix=-mnist-keras | |
type=ref,event=pr,suffix=-mnist-keras | |
type=semver,pattern={{version}},suffix=-mnist-keras | |
type=semver,pattern={{major}}.{{minor}},suffix=-mnist-keras | |
type=sha,suffix=-mnist-keras | |
- name: Docker meta mnist-pytorch | |
id: meta3 | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
docker.pkg.github.com/${{ github.repository }}/fedn | |
tags: | | |
type=ref,event=branch,suffix=-mnist-pytorch | |
type=ref,event=pr,suffix=-mnist-pytorch | |
type=semver,pattern={{version}},suffix=-mnist-pytorch | |
type=semver,pattern={{major}}.{{minor}},suffix=-mnist-pytorch | |
type=sha,suffix=-mnist-pytorch | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: docker.pkg.github.com | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
push: "${{ github.event_name != 'pull_request' }}" | |
tags: ${{ steps.meta1.outputs.tags }} | |
labels: ${{ steps.meta1.outputs.labels }} | |
file: Dockerfile | |
- name: Build and push (mnist-keras) | |
uses: docker/build-push-action@v4 | |
with: | |
push: "${{ github.event_name != 'pull_request' }}" | |
tags: ${{ steps.meta2.outputs.tags }} | |
labels: ${{ steps.meta2.outputs.labels }} | |
file: Dockerfile | |
build-args: | | |
REQUIREMENTS=examples/mnist-keras/requirements.txt | |
- name: Build and push (mnist-pytorch) | |
uses: docker/build-push-action@v4 | |
with: | |
push: "${{ github.event_name != 'pull_request' }}" | |
tags: ${{ steps.meta3.outputs.tags }} | |
labels: ${{ steps.meta3.outputs.labels }} | |
file: Dockerfile | |
build-args: | | |
REQUIREMENTS=examples/mnist-pytorch/requirements.txt |