We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47cc45d commit 0ede766Copy full SHA for 0ede766
.github/workflows/springwolf-ui.yml
@@ -53,6 +53,32 @@ jobs:
53
- name: Build
54
run: ./gradlew -p ${{ env.project }} build
55
56
+
57
+ publish:
58
59
+ runs-on: ubuntu-latest
60
+ timeout-minutes: 10
61
62
+ if: github.ref == 'refs/heads/master'
63
+ needs: [build]
64
+ permissions:
65
+ contents: write
66
67
+ env:
68
+ project: springwolf-ui
69
70
+ steps:
71
+ - uses: actions/checkout@v4
72
73
+ - name: Set up JDK
74
+ uses: actions/setup-java@v4
75
+ with:
76
+ distribution: 'temurin'
77
+ java-version: '17'
78
79
+ - name: Setup Gradle
80
+ uses: gradle/actions/setup-gradle@v4
81
82
- name: Publish package
83
if: github.ref == 'refs/heads/master'
84
run: ./gradlew -p ${{ env.project }} publish
0 commit comments