Release a new version to Github Packages #50
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: '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@v4 | |
with: | |
images: | |
ghcr.io/${{ github.repository }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta_clustered_image | |
uses: docker/metadata-action@v4 | |
with: | |
images: | |
ghcr.io/${{ github.repository }}-clustered | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta_neo4j_image | |
uses: docker/metadata-action@v4 | |
with: | |
images: | |
ghcr.io/${{ github.repository }}-neo4j | |
- 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@v4 | |
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 neo4j image | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./PLATER/neo4j-docker | |
push: true | |
tags: ${{ steps.meta_neo4j_image.outputs.tags }} | |
labels: ${{ steps.meta_neo4j_image.outputs.labels }} | |
- name: Build and push clustered image | |
uses: docker/build-push-action@v4 | |
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 }} |