watchdog-fe: ciを追加
/ build-tool (pull_request) Has been skipped
/ build-angular (pull_request) Has been skipped
/ build-watchdog-be (pull_request) Successful in 4m30s
/ build-docker-image (pull_request) Has been skipped

This commit is contained in:
2024-03-14 14:10:52 +09:00
parent c2e0742c10
commit 02a6428b86
3 changed files with 30 additions and 1 deletions
+29
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 }}
+1 -1
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")
Vendored Regular → Executable
View File