watchdog-be #12

Merged
usbharu merged 5 commits from watchdog-be into master 2024-03-14 05:29:29 +00:00
3 changed files with 30 additions and 1 deletions
Showing only changes of commit 02a6428b86 - Show all commits

View File

@ -0,0 +1,29 @@
on:
pull_request:
types:
- labeled
- opened
- synchronize
- closed
workflow_dispatch:
permissions:
pull-requests: read
jobs:
build-watchdog-be:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
defaults:
run:
working-directory: ./watch-dog-be
if: contains(github.event.pull_request.labels.*.name,'watchdog-be')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '21'
- uses: gradle/actions/setup-gradle@v3
- run: ./gradlew jib -Djib.to.image=git.usbharu.dev/usbharu/watchdog-be -Djib.to.auth.username=usbharu -Djib.to.auth.password=${{ secrets.DEPLOY_TOKEN }}

View File

@ -6,7 +6,7 @@ plugins {
}
group = "dev.usbharu"
version = "1.0-SNAPSHOT"
version = "1.0.0"
application {
mainClass.set("io.ktor.server.netty.EngineMain")

0
watch-dog-be/gradlew vendored Normal file → Executable file
View File