Skip to content

Commit d38c9f5

Browse files
committed
Push docker to index.docker.io
1 parent 5978c97 commit d38c9f5

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ jobs:
1010
steps:
1111
- name: checkout
1212
uses: actions/checkout@master
13-
- name: docker login
14-
run: |
15-
docker login docker.pkg.github.com --username wendigo --password "${GITHUB_PACKAGE_REGISTRY_TOKEN}"
16-
env:
17-
GITHUB_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
- uses: azure/docker-login@v1
14+
with:
15+
username: ${{ secrets.REGISTRY_USERNAME }}
16+
password: ${{ secrets.REGISTRY_PASSWORD }}
1817
-
1918
name: setup-go
2019
uses: actions/setup-go@v1

.goreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ dockers:
4141
binaries:
4242
- chrome-protocol-proxy
4343
image_templates:
44-
- "docker.pkg.github.com/wendigo/chrome-protocol-proxy/chrome-protocol-proxy:latest"
45-
- "docker.pkg.github.com/wendigo/chrome-protocol-proxy/chrome-protocol-proxy:{{ .Tag }}"
46-
- "docker.pkg.github.com/wendigo/chrome-protocol-proxy/chrome-protocol-proxy:v{{ .Major }}"
44+
- "wendigo/chrome-protocol-proxy:latest"
45+
- "wendigo/chrome-protocol-proxy:{{ .Tag }}"
46+
- "wendigo/chrome-protocol-proxy:v{{ .Major }}"
4747
skip_push: false
4848
dockerfile: Dockerfile
4949
build_flag_templates:

0 commit comments

Comments
 (0)