Skip to content

Things that need fixing #1

Things that need fixing

Things that need fixing #1

Workflow file for this run

on:
push:
branches:
- main
- next
pull_request:
branches:
- main
name: Build robot
jobs:
build:
runs-on: ubuntu-24.04
name: Build and deploy
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- name: Set SSH key
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
- name: Add known host key
run: ssh-keyscan javacard.pro >> ~/.ssh/known_hosts
- name: Setup java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: zulu
cache: maven
- name: Compile and verify
run: ./mvnw -U -B -T1C verify
- name: Deploy snapshot
run: ./mvnw -B deploy