Skip to content

Update plugin org.springframework.boot to v3.2.3 (#74) #68

Update plugin org.springframework.boot to v3.2.3 (#74)

Update plugin org.springframework.boot to v3.2.3 (#74) #68

Workflow file for this run

name: build
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: login to docker hub
uses: docker/login-action@v3
with:
username: "hennr"
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: checkout repo
uses: actions/checkout@v4
- name: set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew build
- name: build docker image
run: docker build --platform=linux/arm64 -t hennr/cctray-hub:latest -t hennr/cctray-hub:$(date +%s) .
- name: push image
run: docker image push --all-tags hennr/cctray-hub