This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
server/.github/workflows/build_deploy_dev.yml
2005 acce7ba3cb
Some checks failed
build and publish docker image / deploy / build (push) Failing after 44s
wtf is happening
2024-05-30 06:06:43 +02:00

31 lines
619 B
YAML

name: build and publish docker image / deploy
on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
with:
repository: 'learningpulse/server'
ref: 'dev'
token: '${{ secrets.token }}'
- name: 'Set up java 22'
uses: https://github.com/actions/setup-java@v3
with:
java-version: "22"
distribution: "temurin"
- name: Build with Maven
run: mvn -Dtoken=${{ secrets.token }} clean compile jib:build -e