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 bcb4bad commit 7090288Copy full SHA for 7090288
.github/workflows/snapshot_release.yaml
@@ -1,6 +1,8 @@
1
name: snapshot_release
2
3
on:
4
+ repository_dispatch:
5
+ types: [ trigger-snapshot-release ]
6
workflow_dispatch:
7
8
jobs:
@@ -28,6 +30,14 @@ jobs:
28
30
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
29
31
run: mvn -B -U --fail-at-end -DskipTests -DskipITs clean deploy
32
33
+ - name: Trigger SNAPSHOT release for the rest of modules in langchain4j repo
34
+ if: ${{ github.event_name == 'repository_dispatch' }}
35
+ uses: peter-evans/repository-dispatch@v4
36
+ with:
37
+ token: ${{ secrets.GH_RELEASE_AUTOMATION_PAT }}
38
+ repository: langchain4j/langchain4j
39
+ event-type: trigger-snapshot-release
40
+
41
compliance:
42
runs-on: ubuntu-latest
43
steps:
0 commit comments