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 d0dd446 commit f6f8023Copy full SHA for f6f8023
.github/workflows/ci-publish.yml
@@ -1,7 +1,10 @@
1
name: CI Publish
2
3
on:
4
- workflow_dispatch:
+ workflow_call:
5
+ secrets:
6
+ jfArtifactorySpring:
7
+ required: true
8
9
jobs:
10
publish:
@@ -20,7 +23,7 @@ jobs:
20
23
with:
21
24
version: 1.46.4
22
25
env:
- JF_ARTIFACTORY_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
26
+ JF_ARTIFACTORY_SPRING: ${{ secrets.jfArtifactorySpring }}
27
- name: Configure JFrog Cli
28
run: |
29
jfrog rt mvnc \
.github/workflows/ci.yml
@@ -22,3 +22,10 @@ jobs:
java-version: ${{ matrix.java }}
cache: maven
- run: ./mvnw -B package
+ publish:
+ needs: [build]
+ runs-on: ubuntu-latest
+ name: Call Publish Snapshot
+ uses: spring-projects/spring-shell/.github/workflows/ci-publish@main
30
31
+ jfArtifactorySpring: ${{ secrets.JF_ARTIFACTORY_SPRING }}
0 commit comments