Skip to content

Commit

Permalink
Updated github action
Browse files Browse the repository at this point in the history
  • Loading branch information
The1Penguin committed Dec 19, 2022
1 parent e2ffde4 commit 02f728a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

# User triggering the action is authenticated to the container registry
- name: Log in to the Container registry
uses: docker/login-action@v1.10.0
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -30,12 +30,12 @@ jobs:
# Basically sets the image tag from the release
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v3.6.0
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v2.7.0
uses: docker/build-push-action@v3
with:
context: .
push: true
Expand Down

0 comments on commit 02f728a

Please sign in to comment.