-
Notifications
You must be signed in to change notification settings - Fork 13
46 lines (41 loc) · 1.25 KB
/
build-push-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
name: "Build image and push it to registry"
on:
push:
branches:
- 'development'
- 'release-1.9'
- 'release-1.10'
jobs:
push-image:
if: github.repository == 'utrechtuniversity/yoda-portal'
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
steps:
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Check out Yoda repository
uses: actions/checkout@v4
with:
path: yoda
repository: UtrechtUniversity/yoda
ref: ${{ steps.extract_branch.outputs.branch }}
- name: Authenticate to the container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: yoda/docker/images/yoda_portal
file: yoda/docker/images/yoda_portal/Dockerfile
push: true
tags: ghcr.io/utrechtuniversity/yoda-portal:${{ steps.extract_branch.outputs.branch }}
build-args: |
TAG=${{ steps.extract_branch.outputs.branch }}