Skip to content

Commit

Permalink
ci: update docker actions
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Spooren <[email protected]>
  • Loading branch information
aparcar committed May 1, 2024
1 parent a954e4b commit b5cba84
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,23 @@ jobs:
- name: Docker meta
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: openwrt/asu
tags: |
type=semver,pattern={{version}}
latest
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push ASU to Docker Hub
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: Containerfile
push: true
tags: |
latest
${{ steps.meta.outputs.tags }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit b5cba84

Please sign in to comment.