We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a38ac7 commit 742183fCopy full SHA for 742183f
2 files changed
.github/workflows/build.yaml
@@ -53,6 +53,7 @@ jobs:
53
images: |
54
coderockr/php
55
ghcr.io/${{ github.repository }}
56
+ ghcr.io/coderockr/php
57
tags: |
58
type=schedule
59
type=ref,event=branch
Makefile
@@ -0,0 +1,10 @@
1
+all: build
2
+
3
+IMAGE=ghcr.io/coderockr/php
4
+TAG=$(shell git branch | grep \* | cut -d ' ' -f2)
5
6
+build:
7
+ docker build . -t $(IMAGE):$(TAG)
8
9
+push: build
10
+ docker push $(IMAGE):$(TAG)
0 commit comments