Skip to content

Commit

Permalink
update specific uses and context for build and push
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Kais committed Dec 30, 2024
1 parent 9389c2f commit 7581b35
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3.0.0

- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3.0.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and Push Docker Image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v3.0.0
with:
context: .
context: ./docker/images/bitovi
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/your-image-name:latest

0 comments on commit 7581b35

Please sign in to comment.