File tree 1 file changed +51
-0
lines changed
1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Publish container to GHCR
2
+ #
3
+ # This workflow builds a nii2dcm container and publishes to GHCR
4
+
5
+ name : Create and publish container on GHCR
6
+ on :
7
+ release :
8
+ types : [published]
9
+ push :
10
+ branches :
11
+ - docker-build
12
+ workflow_run :
13
+ workflows : ["Publish package to TestPyPI"]
14
+ types :
15
+ - completed
16
+
17
+ env :
18
+ REGISTRY : ghcr.io
19
+ IMAGE_NAME : ${{ github.repository }}
20
+
21
+ jobs :
22
+ build-and-push-image :
23
+ runs-on : ubuntu-latest
24
+
25
+ permissions :
26
+ contents : read
27
+ packages : write
28
+
29
+ steps :
30
+ - name : Checkout repository
31
+ uses : actions/checkout@v4
32
+ - name : Log in to the Container registry
33
+ uses : docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
34
+ with :
35
+ registry : ${{ env.REGISTRY }}
36
+ username : ${{ github.actor }}
37
+ password : ${{ secrets.GHCR_TOKEN }}
38
+
39
+ - name : Extract metadata (tags, labels) for Docker
40
+ id : meta
41
+ uses : docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
42
+ with :
43
+ images : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
44
+
45
+ - name : Build and push Docker image
46
+ uses : docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
47
+ with :
48
+ context : .
49
+ push : true
50
+ tags : ${{ steps.meta.outputs.tags }}
51
+ labels : ${{ steps.meta.outputs.labels }}
You can’t perform that action at this time.
0 commit comments