Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Commit 74235f0

Browse files
authored
Update docker-dev.yml
1 parent eba8a94 commit 74235f0

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/docker-dev.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,18 @@ jobs:
1010
steps:
1111
- name: checkout code
1212
uses: actions/checkout@v2
13-
- name: install buildx
13+
- name: Login to DockerHub
14+
uses: docker/login-action@v1
15+
with:
16+
username: ${{ secrets.DOCKERHUB_USERNAME }}
17+
password: ${{ secrets.DOCKERHUB_TOKEN }}
18+
- name: Set up Docker Buildx
1419
id: buildx
15-
uses: crazy-max/ghaction-docker-buildx@v1
20+
uses: docker/setup-buildx-action@v1
1621
with:
1722
version: latest
1823
- name: build the image
1924
run: |
2025
docker buildx build \
2126
--tag freetakteam/freetakserver:dev \
22-
--platform linux/amd64,linux/arm/v7,linux/arm64 .
27+
--platform linux/amd64,linux/arm/v7,linux/arm64 . --push

0 commit comments

Comments
 (0)