Implement Vehicle Measurement API operation #329
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Cache Maven packages | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Set up JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: 'adopt' | |
cache: maven | |
- name: Build | |
run: mvn -B verify -pl !:docs -P container | |
- name: Publish container | |
run: | | |
echo "${ACR_PASSWORD}" | docker login ${ACR_HOSTNAME} --username ${ACR_USERNAME} --password-stdin | |
docker tag traqqr:latest ${ACR_HOSTNAME}/traqqr:latest | |
docker push ${ACR_HOSTNAME}/traqqr:latest | |
env: | |
ACR_HOSTNAME: ${{ secrets.ACR_HOSTNAME }} | |
ACR_PASSWORD: ${{ secrets.ACR_PASSWORD }} | |
ACR_USERNAME: ${{ secrets.ACR_USERNAME }} | |
if: ${{ github.ref == 'refs/heads/main' }} |