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 07ef166 commit 2c0f076Copy full SHA for 2c0f076
1 file changed
.github/workflows/main.yml
@@ -20,13 +20,22 @@ jobs:
20
mvn --batch-mode deploy
21
env:
22
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
-
+
24
+ deploy-await:
25
+ runs-on: ubuntu-latest
26
+ needs: publish-core
27
+ steps:
28
+ - name: Sleep for 30 seconds
29
+ uses: jakejarvis/wait-action@master
30
+ with:
31
+ time: '2m'
32
33
publish-maven-plugin:
34
runs-on: ubuntu-latest
35
permissions:
36
contents: read
37
packages: write
- needs: publish-core
38
+ needs: deploy-await
39
steps:
40
- uses: actions/checkout@v3
41
- uses: actions/setup-java@v3
0 commit comments