IHP-28 Review and refactor all Java resources (#35) #5
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: publish recognizer | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- 'recognizer/**' | |
- 'domain/**' | |
- 'common/**' | |
- 'project/**' | |
- 'build.sbt' | |
- '.github/**' | |
env: | |
IMAGE_NAME: image-hosting-processing-recognizer | |
jobs: | |
publish-container: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Log in to registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
#- name: run tests | |
# run: sbt test | |
#- name: run integration tests | |
# run: sbt it:test | |
- name: Assembly | |
run: sbt buildRecognizer | |
- name: Build image | |
run: docker build ./recognizer --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" | |
- name: Push image | |
run: | | |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME | |
# Change all uppercase to lowercase | |
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') | |
# make version be equal to branch name (in case we want to have several branches to push container) | |
VERSION=$GITHUB_REF_NAME | |
echo IMAGE_ID=$IMAGE_ID | |
echo VERSION=$VERSION | |
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION | |
docker push $IMAGE_ID:$VERSION |