File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ jobs:
31
31
- name : Set up Docker Buildx
32
32
uses : docker/setup-buildx-action@v1
33
33
34
- - name : Login to DockerHub
35
- uses : docker/login-action@v1
34
+ - name : Log in to the GitHub Container registry
35
+ uses : docker/login-action@v2
36
36
with :
37
- username : 1gtm
38
- password : ${{ secrets.DOCKERHUB_TOKEN }}
39
-
37
+ registry : ghcr.io
38
+ username : ${{ github.actor }}
39
+ password : ${{ secrets.GITHUB_TOKEN }}
40
40
- name : Run checks
41
41
run : |
42
42
make ci
Original file line number Diff line number Diff line change 1
1
SHELL =/bin/bash -o pipefail
2
2
3
- REGISTRY ?= kubedb
3
+ REGISTRY ?= ghcr.io/ kubedb
4
4
BIN ?= mysql-init
5
5
IMAGE := $(REGISTRY ) /$(BIN )
6
6
TAG ?= $(shell git describe --exact-match --abbrev=0 2>/dev/null || echo "")
@@ -45,7 +45,7 @@ release:
45
45
46
46
.PHONY : version
47
47
version :
48
- @echo ::set-output name= version:: $(VERSION )
48
+ @echo version= $(VERSION )
49
49
50
50
.PHONY : fmt
51
51
fmt :
You can’t perform that action at this time.
0 commit comments