Skip to content

Fixes #272 - Expose certificate for download #160

Fixes #272 - Expose certificate for download

Fixes #272 - Expose certificate for download #160

Workflow file for this run

name: build
on:
push:
branches:
- 'current'
pull_request:
branches:
- 'current'
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Build project
run: mvn -ntp install
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to Docker Hub
run: |
cd azure-keyvault
mvn -B -DskipTests=true -DskipITs=true -ntp docker:build docker:push