Skip to content

Release a new version to Github Packages #67

Release a new version to Github Packages

Release a new version to Github Packages #67

Workflow file for this run

name: 'Release a new version to Github Packages'
on:
release:
types: [published]
env:
REGISTRY: ghcr.io
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages tagged with "latest" and version number.
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Extract metadata (tags, labels) for Docker
id: meta_base_image
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images:
ghcr.io/${{ github.repository }}
- name: Extract metadata (tags, labels) for Docker
id: meta_clustered_image
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images:
ghcr.io/${{ github.repository }}-clustered
- name: Login to ghcr
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push base image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: ./PLATER/
push: true
tags: ${{ steps.meta_base_image.outputs.tags }}
labels: ${{ steps.meta_base_image.outputs.labels }}
build-args: VERSION=${{ steps.get_version.outputs.VERSION }}
- name: Build and push clustered image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: ./PLATER/plater-clustered-docker
push: true
tags: ${{ steps.meta_clustered_image.outputs.tags }}
labels: ${{ steps.meta_clustered_image.outputs.labels }}
build-args: VERSION=${{ steps.get_version.outputs.VERSION }}