Skip to content

Commit

Permalink
Merge pull request #102 from DUNE-DAQ/titavare/usvc_dep_action
Browse files Browse the repository at this point in the history
Microservices_Dependencies Action
  • Loading branch information
JonathanHancock0 authored Jun 17, 2024
2 parents 596b8a1 + 3c82ad1 commit 5b0742a
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/build_docker_dependencies_image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build microservices docker image

on:
push:
branches:
- develop
tags:
- 'v*'
paths:
- dockerfiles/microservices-dependencies.dockerfile

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
repository: DUNE-DAQ/microservices
path: microservices

- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/DUNE-DAQ/microservices_dependencies
tags: |
type=raw,value=latest
type=ref,event=branch
type=ref,event=tag
- name: Build and push Docker images
uses: docker/build-push-action@v3
with:
context: ${{ github.workspace }}/microservices/
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 5b0742a

Please sign in to comment.