Skip to content

UBO-325 Improve accessibility of result page (#381) #172

UBO-325 Improve accessibility of result page (#381)

UBO-325 Improve accessibility of result page (#381) #172

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: Maven Snapshot deploy
on:
push:
branches:
- 'main'
- 'develop'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish to OSSRH with Apache Maven
run: mvn --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
- name: Login to Docker Hub
if: success()
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build the mir Docker images and push them
if: success()
run: |
docker build . --file Dockerfile --tag mycoreorg/ubo:${GITHUB_REF_NAME}
docker build ubo-webapp/src/main/setup/solr/ --file ubo-webapp/src/main/setup/solr/Dockerfile --tag mycoreorg/ubo-solr:${GITHUB_REF_NAME}
docker push mycoreorg/ubo:${GITHUB_REF_NAME}
docker push mycoreorg/ubo-solr:${GITHUB_REF_NAME}