Skip to content

Commit

Permalink
refactor: update docker actions
Browse files Browse the repository at this point in the history
  • Loading branch information
NtskwK committed Aug 27, 2024
1 parent fe39546 commit dc6a15b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ jobs:
with:
submodules: 'recursive'
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v1
uses: docker/metadata-action@v5
with:
images: opendronemap/webodm_webapp
tag-semver: |
{{version}}
tags: |
type=semver,pattern={{version}}
- name: Build and push Docker image
id: docker_build
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
file: ./Dockerfile
context: .
platforms: linux/amd64,linux/arm64
push: true
no-cache: true
Expand Down

0 comments on commit dc6a15b

Please sign in to comment.