Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
digrouz committed Oct 30, 2024
1 parent c5b8fcd commit 1bd0b77
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,27 @@ jobs:
uses: actions/checkout@main
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@master
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@master
-
name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@master
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push tag latest
uses: docker/build-push-action@v3
uses: docker/build-push-action@master
with:
context: .
file: Dockerfile_alpine
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/joal:latest
-
name: Build and push tag alpine
uses: docker/build-push-action@v3
uses: docker/build-push-action@master
with:
context: .
file: Dockerfile_alpine
Expand All @@ -44,11 +44,11 @@ jobs:
dockerHubDescription:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@main

- name: Docker Hub Description
uses: peter-evans/dockerhub-description@v3
uses: peter-evans/dockerhub-description@main
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: ${{ secrets.DOCKERHUB_USERNAME }}/joal
repository: ${{ secrets.DOCKERHUB_USERNAME }}/joal

0 comments on commit 1bd0b77

Please sign in to comment.