Update release.yml

pull/73/head
Thomas Tanon 5 years ago committed by GitHub
parent 924c221a0d
commit d7794415e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 40
      .github/workflows/release.yml

@ -9,28 +9,44 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: docker/build-push-action@v2.2.2 - uses: crazy-max/ghaction-docker-meta@v1
id: docker_meta
with:
images: oxigraph/oxigraph-wikibase
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with: with:
dockerfile: server/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
repository: oxigraph/oxigraph - uses: docker/build-push-action@v2
tag_with_ref: true with:
tags: latest context: .
add_git_labels: true file: server/Dockerfile
pull: true
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
push_wikibase_to_docker_registry: push_wikibase_to_docker_registry:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: docker/build-push-action@v2.2.2 - uses: crazy-max/ghaction-docker-meta@v1
id: docker_meta
with:
images: oxigraph/oxigraph-wikibase
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with: with:
dockerfile: wikibase/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
repository: oxigraph/oxigraph-wikibase - uses: docker/build-push-action@v2
tag_with_ref: true with:
tags: latest context: .
add_git_labels: true file: wikibase/Dockerfile
pull: true
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
publish_lib_crate: publish_lib_crate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:

Loading…
Cancel
Save