mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
update Docker login for goreleaser-cross v1.19
This commit is contained in:
parent
3e7160997a
commit
4d19cf5342
1 changed files with 6 additions and 2 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -29,6 +29,12 @@ jobs:
|
||||||
TAG=${GITHUB_REF#refs/tags/}
|
TAG=${GITHUB_REF#refs/tags/}
|
||||||
echo ::set-output name=tag_name::${TAG}
|
echo ::set-output name=tag_name::${TAG}
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_KEY }}
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v1
|
uses: docker/setup-qemu-action@v1
|
||||||
|
|
||||||
|
|
@ -39,5 +45,3 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
VERSION: ${{ steps.prepare.outputs.tag_name }}
|
VERSION: ${{ steps.prepare.outputs.tag_name }}
|
||||||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
|
||||||
DOCKER_USERNAME: ${{ secrets.DOCKERHUB }}
|
|
||||||
DOCKER_PASSWORD: ${{ secrets.DOCKERHUB_KEY }}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue