Prettify workflow files

This commit is contained in:
Tyrrrz
2023-05-11 00:59:08 +03:00
parent b8b1fdb1d1
commit 9428d5ed56
2 changed files with 32 additions and 8 deletions

View File

@@ -15,7 +15,9 @@ jobs:
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
run: >
echo ${{ secrets.DOCKER_TOKEN }} |
docker login -u tyrrrz --password-stdin
- name: Build & push image
run: >
@@ -42,7 +44,9 @@ jobs:
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
run: docker login -u tyrrrz -p ${{ secrets.DOCKER_TOKEN }}
run: >
echo ${{ secrets.DOCKER_TOKEN }} |
docker login -u tyrrrz --password-stdin
- name: Build & push image
run: >