v2.0a8 #243
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker deployment | |
on: | |
release: | |
types: [published] | |
pull_request: | |
paths: | |
- "Dockerfile" | |
- ".github/workflows/docker.yml" | |
jobs: | |
docker: | |
if: ${{ (!github.event.release.prerelease) && (github.event_name != 'pull_request')}} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build the image for testing | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
load: true | |
tags: asreview/asreview:test | |
- name: Test the built image | |
run: | | |
docker run asreview/asreview:test -h | |
- name: Docker meta | |
id: meta | |
if: github.event_name != 'pull_request' | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/asreview/asreview | |
- name: Login to GitHub registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and, if it is not a pull request, push to Docker Hub | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }},ghcr.io/asreview/asreview:latest | |
labels: ${{ steps.meta.outputs.labels }} |