2023.07.15 #61
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: Deploy | |
on: | |
release: | |
types: [published] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: true | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 18 | |
- name: Build | |
run: ./gradlew --no-daemon clean test jlink | |
- name: Docker Login | |
run: docker login docker.pkg.github.com -u "${{ secrets.DOCKER_USER }}" -p "${{ secrets.DOCKER_PASS }}" | |
- name: Docker Build & Push | |
run: | | |
IMAGE_NAME=`echo "docker.pkg.github.com/${GITHUB_REPOSITORY,,}/holocore"` | |
RELEASE_NAME=`echo $GITHUB_REF | sed 's/refs\/tags\///g'` | |
docker build -t "$IMAGE_NAME:$RELEASE_NAME" . | |
docker push "$IMAGE_NAME:$RELEASE_NAME" | |
- name: Docker Push to QA | |
if: github.event.release.prerelease | |
run: | | |
IMAGE_NAME=`echo "docker.pkg.github.com/${GITHUB_REPOSITORY,,}/holocore"` | |
RELEASE_NAME=`echo $GITHUB_REF | sed 's/refs\/tags\///g'` | |
docker tag "$IMAGE_NAME:$RELEASE_NAME" "$IMAGE_NAME:cu_quality_assurance" | |
docker push "$IMAGE_NAME:cu_quality_assurance" | |
- name: Docker Push to Master | |
if: github.event.release.prerelease == false | |
run: | | |
IMAGE_NAME=`echo "docker.pkg.github.com/${GITHUB_REPOSITORY,,}/holocore"` | |
RELEASE_NAME=`echo $GITHUB_REF | sed 's/refs\/tags\///g'` | |
docker tag "$IMAGE_NAME:$RELEASE_NAME" "$IMAGE_NAME:cu_latest" | |
docker push "$IMAGE_NAME:cu_latest" |