Skip to content

Update publish.yml

Update publish.yml #1

Workflow file for this run

name: Bump version
on:
push:
branches:
- test/publish
jobs:
tag:
name: bump tags
outputs:
part: ${{ steps.bump_tag.outputs.part }}
tag: ${{ steps.bump_tag.outputs.tag }}
new_tag: ${{ steps.bump_tag.outputs.new_tag }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Bump version and push tag
id: bump_tag
uses: anothrNick/github-tag-action@1.67.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
push_to_registry:
needs: tag
if: needs.tag.outputs.part != ''
name: Push Docker image to Github Container registry
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out the repo
uses: actions/checkout@v3
with:
submodules: true
- name: Log in to the Github Container registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/nbisweden/mimir
- name: Build and push client
uses: docker/build-push-action@v3
with:
context: ./mimir-ui
file: ./mimir-ui/Dockerfile
push: true
tags: |
ghcr.io/nbisweden/mimir-client:${{ needs.tag.outputs.tag }}
ghcr.io/nbisweden/mimir-client:latest
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
org.opencontainers.image.revision=${{ github.sha }}
- name: Build and push backend-wsgi-server
uses: docker/build-push-action@v3
with:
context: ./mimir-server
file: ./mimir-server/Dockerfile
target: wsgi-server
push: true
tags: |
ghcr.io/nbisweden/mimir-backend-wsgi-server:${{ needs.tag.outputs.tag }}
ghcr.io/nbisweden/mimir-backend-wsgi-server:latest
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
org.opencontainers.image.revision=${{ github.sha }}
- name: Build and push backend-web-server
uses: docker/build-push-action@v3
with:
context: ./mimir-server
file: ./mimir-server/Dockerfile
push: true
tags: |
ghcr.io/nbisweden/mimir-backend-web-server:${{ needs.tag.outputs.tag }}
ghcr.io/nbisweden/mimir-backend-web-server:latest
labels: |
org.opencontainers.image.source=${{ github.event.repository.clone_url }}
org.opencontainers.image.created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
org.opencontainers.image.revision=${{ github.sha }}