project-auto-wizard 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -17,7 +17,7 @@ npx project-auto-wizard
17
17
  [![node](https://img.shields.io/badge/node-%3E%3D20.12-brightgreen)](package.json)
18
18
 
19
19
  <!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
20
- ## 최신 버전 : v0.4.0 (2026-08-23)
20
+ ## 최신 버전 : v0.5.0 (2026-08-23)
21
21
 
22
22
  [전체 버전 기록 보기](CHANGELOG.md)
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-auto-wizard",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "One command DevOps: npx wizard that installs GitHub-native AI Release Automation into any project",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,6 +24,9 @@ permissions:
24
24
  issues: write
25
25
  checks: write
26
26
 
27
+ env:
28
+ JAVA_VERSION: "__JAVA_VERSION__" # @wizard ask:@jdk
29
+
27
30
  jobs:
28
31
  build-check:
29
32
  name: Build Verification
@@ -35,10 +38,10 @@ jobs:
35
38
  with:
36
39
  fetch-depth: 0
37
40
 
38
- - name: Setup JDK 17
41
+ - name: Setup JDK
39
42
  uses: actions/setup-java@v5
40
43
  with:
41
- java-version: '17'
44
+ java-version: ${{ env.JAVA_VERSION }}
42
45
  distribution: 'temurin'
43
46
 
44
47
  - name: Validate Gradle Wrapper
@@ -16,16 +16,26 @@ on:
16
16
  tags:
17
17
  - 'v*.*.*'
18
18
 
19
+ concurrency:
20
+ group: nexus-publish-${{ github.ref }}
21
+ cancel-in-progress: false
22
+
23
+ permissions:
24
+ contents: read
25
+
26
+ env:
27
+ JAVA_VERSION: "__JAVA_VERSION__" # @wizard ask:@jdk
28
+
19
29
  jobs:
20
30
  publish:
21
31
  runs-on: ubuntu-latest
22
32
  steps:
23
33
  - uses: actions/checkout@v7
24
34
 
25
- - name: Set up JDK 17
35
+ - name: Set up JDK
26
36
  uses: actions/setup-java@v5
27
37
  with:
28
- java-version: '17'
38
+ java-version: ${{ env.JAVA_VERSION }}
29
39
  distribution: 'temurin'
30
40
 
31
41
  - name: Setup Gradle