Skip to content

Commit

Permalink
Upgrade workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeboer committed Nov 15, 2022
1 parent f5883c0 commit 9c84404
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@ on:

jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: docker/build-push-action@v1
- uses: docker/setup-buildx-action@v2

- uses: docker/login-action@v2
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}

- uses: docker/build-push-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: netwerkdigitaalerfgoed/bikeshed
tag_with_ref: true
push: true
tags: |
netwerkdigitaalerfgoed/bikeshed:${{ steps.vars.outputs.version_tag }}
netwerkdigitaalerfgoed/bikeshed:latest

0 comments on commit 9c84404

Please sign in to comment.