Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
Merge pull request #186 from International-Data-Spaces-Association/de…
Browse files Browse the repository at this point in the history
…velop

Add automated image building for master
  • Loading branch information
juliapampus authored Mar 12, 2021
2 parents 2630732 + 5db0346 commit bfb341d
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/build_image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: docker_image

on:
push:
branches: [ master ]
tags: 'v*'

jobs:
docker:
runs-on: ubuntu-latest
environment: DOCKER_BUILD
steps:
-
name: Checkout Repo
uses: actions/checkout@v2
-
name: Docker metadata
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
with:
images: docker.pkg.github.com/international-data-spaces-association/dataspaceconnector/dataspace-connector
tag-semver: |
{{version}}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Github Packages
uses: docker/login-action@v1
with:
registry: docker.pkg.github.com
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PW }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}

0 comments on commit bfb341d

Please sign in to comment.