Skip to content

Commit 3d1033c

Browse files
committed
Test release
1 parent ac0aa6b commit 3d1033c

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.github/workflows/release.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
1919
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
20-
run: ./gradlew assemble bintrayUpload docs --no-daemon
20+
run: ./gradlew assemble bintrayUpload docs --no-daemon && ./gradlew bintrayPublish --no-daemon --dry-run
2121
- id: release_version
2222
if: success()
2323
run: echo ::set-output name=release_version::${GITHUB_REF:11}
@@ -35,7 +35,7 @@ jobs:
3535
- What's New: https://docs.micronaut.io/${{ steps.release_version.outputs.release_version }}/guide/index.html#whatsNew
3636
- Issues Closed: https://github.com/micronaut-projects/micronaut-core/milestone/TODO?closed=1
3737
- Changes: https://github.com/micronaut-projects/micronaut-core/compare/1.2.x...v${{ steps.release_version.outputs.release_version }}
38-
draft: false
38+
draft: true
3939
prerelease: true
4040
- name: Upload Release
4141
if: success()
@@ -50,25 +50,25 @@ jobs:
5050
asset_content_type: application/zip
5151
- name: SDKMan Announce
5252
if: success()
53-
run: ./gradlew sdkMinorRelease
53+
run: ./gradlew sdkMinorRelease --dry-run
5454
env:
5555
GH_TOKEN: ${{ secrets.GH_TOKEN }}
5656
GVM_SDKVENDOR_KEY: ${{ secrets.GVM_SDKVENDOR_KEY }}
5757
GVM_SDKVENDOR_TOKEN: ${{ secrets.GVM_SDKVENDOR_TOKEN }}
58-
- name: Publish to Github Pages
59-
if: success()
60-
uses: micronaut-projects/micronaut-docs-deploy@master
61-
env:
62-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
63-
GH_REPOSITORY: micronaut-projects/micronaut-docs
64-
BASE_BRANCH: master
65-
BRANCH: gh-pages
66-
FOLDER: build/docs
67-
BETA: true
68-
VERSION: ${{ steps.release_version.outputs.release_version }}
58+
# - name: Publish to Github Pages
59+
# if: success()
60+
# uses: micronaut-projects/micronaut-docs-deploy@master
61+
# env:
62+
# GH_TOKEN: ${{ secrets.GH_TOKEN }}
63+
# GH_REPOSITORY: micronaut-projects/micronaut-docs
64+
# BASE_BRANCH: master
65+
# BRANCH: gh-pages
66+
# FOLDER: build/docs
67+
# BETA: true
68+
# VERSION: ${{ steps.release_version.outputs.release_version }}
6969
- name: Synchronize Maven Central
7070
if: success()
7171
env:
7272
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
7373
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
74-
run: ./gradlew sWMC
74+
run: ./gradlew sWMC --dry-run

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
projectVersion=1.3.0.BUILD-SNAPSHOT
1+
projectVersion=1.3.0.TEST
22
projectGroupId=io.micronaut
33
title=Micronaut
44
projectDesc=Natively Cloud Native

gradle/publishing.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ bintray {
200200
user = bintrayUser
201201
key = bintrayKey
202202
publications = ['maven']
203-
publish = true
203+
publish = false
204204
pkg {
205205
repo = 'core-releases-local'
206206
userOrg = 'micronaut'

0 commit comments

Comments
 (0)