Skip to content

Commit 5209f90

Browse files
committed
update the release pipeline to skip tests (it has been covered in other pipelines)
1 parent 6c5c47d commit 5209f90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
distribution: 'corretto'
2828
java-version: '17'
29-
- run: ./gradlew check createDistributable packageDistributionForCurrentOS
29+
- run: ./gradlew createDistributable packageDistributionForCurrentOS
3030
- run: pushd ./build/compose/binaries/main/app && ls -al && tar -cvzf "app.tar.gz" "Hello HTTP" && mv "app.tar.gz" "../../../../../HelloHTTP-${{ github.ref_name }}-linux-${{ runner.arch }}.tar.gz" && popd
3131
- uses: softprops/action-gh-release@v1
3232
with:
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
distribution: 'corretto'
4242
java-version: '17'
43-
- run: ./gradlew check createDistributable packageDistributionForCurrentOS
43+
- run: ./gradlew createDistributable packageDistributionForCurrentOS
4444
- run: pushd ./build/compose/binaries/main/app && dir && tar -acf "app.zip" "Hello HTTP" && move "app.zip" "../../../../../HelloHTTP-${{ github.ref_name }}-windows-${{ runner.arch }}.zip" && popd
4545
- uses: softprops/action-gh-release@v1
4646
with:
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
distribution: 'corretto'
6060
java-version: '17'
61-
- run: ./gradlew check createDistributable packageDistributionForCurrentOS
61+
- run: ./gradlew createDistributable packageDistributionForCurrentOS
6262
- run: mv ./build/compose/binaries/main/dmg/*.dmg "./HelloHTTP-${{ github.ref_name }}-macos-${{ runner.arch }}.dmg"
6363
- uses: softprops/action-gh-release@v1
6464
with:

0 commit comments

Comments
 (0)