Skip to content

Commit

Permalink
Green and happy 😊
Browse files Browse the repository at this point in the history
  • Loading branch information
IRus committed Aug 23, 2024
1 parent e8b77d9 commit 779bacb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: "Backend Application"
path: "build/distributions/backend.tar"
path: "komok-app/build/distributions/komok-app.tar"
retention-days: 1
build-frontend:
name: "Build Frontend Application"
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
name: "Backend Application"
path: "build/distributions/"
- name: "Untar files"
run: mkdir -p build/install && tar -xvf build/distributions/backend.tar -C $_
run: mkdir -p build/install && tar -xvf komok-app/build/distributions/komok-app.tar -C $_
- uses: actions/download-artifact@v4
with:
name: "Frontend Application"
Expand Down
8 changes: 8 additions & 0 deletions komok-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@ application {
applicationName = "backend"
}

tasks.distTar {
archiveFileName = "komok-app.tar"
}

tasks.distZip {
enabled = false
}

dependencies {
implementation(projects.komokAuthCommon)
implementation(projects.komokTechConfig)
Expand Down

0 comments on commit 779bacb

Please sign in to comment.