radar-push-endpoint release 0.3.2 #10
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
# Create release files | |
name: Release | |
on: | |
release: | |
types: [published] | |
jobs: | |
upload: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
# A list of files, directories, and wildcard patterns to cache and restore | |
path: | | |
~/.gradle/caches/jars-3 | |
~/.gradle/caches/modules-2/files-2.1/ | |
~/.gradle/caches/modules-2/metadata-2.96/ | |
~/.gradle/native | |
~/.gradle/wrapper | |
# An explicit key for restoring and saving the cache | |
key: ${{ runner.os }}-gradle | |
# Compile code | |
- name: Compile code | |
run: ./gradlew assemble | |
# Upload it to GitHub | |
- name: Upload to GitHub | |
uses: AButler/upload-release-assets@v2.0 | |
with: | |
files: 'build/libs/*;build/distributions/*' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# Build and push tagged release docker image | |
docker: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_IMAGE: radarbase/radar-push-endpoint | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v4 | |
# Setup docker build environment | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# Add Docker labels and tags | |
- name: Docker meta | |
id: docker_meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.DOCKER_IMAGE }} | |
tags: | | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
- name: Build docker | |
uses: docker/build-push-action@v3 | |
with: | |
# Allow running the image on the architectures supported by openjdk:17-jre-slim | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.docker_meta.outputs.tags }} | |
# Use runtime labels from docker_meta as well as fixed labels | |
labels: | | |
${{ steps.docker_meta.outputs.labels }} | |
maintainer=Yatharth Ranjan <yatharth.ranjan@kcl.ac.uk> | |
org.opencontainers.image.authors=Yatharth Ranjan <yatharth.ranjan@kcl.ac.uk> | |
org.opencontainers.image.vendor=RADAR-base | |
org.opencontainers.image.licenses=Apache-2.0 | |
- name: Inspect docker image | |
run: | | |
docker pull ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} | |
docker image inspect ${{ env.DOCKER_IMAGE }}:${{ steps.docker_meta.outputs.version }} |