Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ jobs:
uses: gradle/wrapper-validation-action@v1

- name: Build with Gradle
run: ./gradlew check
run: ./gradlew build
working-directory: ./api-editor

- name: Install dependencies
run: npm ci

- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release


build-package-parser:
Expand Down
2 changes: 1 addition & 1 deletion api-editor/backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tasks.withType<KotlinCompile> {
}

tasks.withType<ShadowJar> {
archiveFileName.set("${project.group}-${project.name}-all.jar")
archiveFileName.set("api-editor-shadow.jar")
}

// Dependencies --------------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
{
assets: [
{
path: 'api-editor/backend/build/libs/*-all.jar',
path: 'api-editor/backend/build/libs/api-editor-shadow.jar',
name: 'api-editor-${nextRelease.gitTag}.jar',
label: 'API-Editor (${nextRelease.gitTag})',
},
Expand Down