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 53a8f22 commit 5a4f5e1Copy full SHA for 5a4f5e1
.github/workflows/build.yml
@@ -56,13 +56,13 @@ jobs:
56
57
- name: Wait for MSSQL
58
run: |
59
- for i in {1..30}; do
+ for i in {1..10}; do
60
+ sleep $((11 - i))
61
if echo "SELECT 1" | /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P veryStrong123 &> /dev/null; then
62
echo "MSSQL is ready!"
63
break
64
fi
65
echo "Waiting for MSSQL to be ready..."
- sleep 2
66
done
67
68
- name: Run Core Module Tests
@@ -97,7 +97,7 @@ jobs:
97
target-folder: javadoc-core # url will be https://<username>.github.io/<repo>/javadoc-core
98
project: maven # or gradle
99
100
- deploy:
+ maven-deploy:
101
runs-on: ubuntu-latest
102
needs: [build]
103
if: ${{ github.ref == 'refs/heads/main' }}
0 commit comments