Release #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout the plugin GitHub repository | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Fetch Gradle properties | |
id: properties | |
shell: bash | |
run: | | |
PROPERTIES="$(./gradlew properties --console=plain -q)" | |
PLUGIN_VERSION_FULL="$(echo "$PROPERTIES" | grep "^pluginVersion:" | cut -f2- -d ' ')" | |
CURR_COMMIT="$(git rev-parse HEAD)" | |
echo "pluginVersionFull: $PLUGIN_VERSION_FULL" | |
echo "currCommit: $CURR_COMMIT" | |
echo "pluginVersionFull=$PLUGIN_VERSION_FULL" >> $GITHUB_OUTPUT | |
echo "currCommit=$CURR_COMMIT" >> $GITHUB_OUTPUT | |
- name: Publish Plugin | |
env: | |
ZOWE_INTELLIJ_MARKET_TOKEN: ${{ secrets.ZOWE_INTELLIJ_MARKET_TOKEN }} | |
INTELLIJ_SIGNING_CERTIFICATE_CHAIN: ${{ secrets.INTELLIJ_SIGNING_CERTIFICATE_CHAIN }} | |
INTELLIJ_SIGNING_PRIVATE_KEY: ${{ secrets.INTELLIJ_SIGNING_PRIVATE_KEY }} | |
INTELLIJ_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.INTELLIJ_SIGNING_PRIVATE_KEY_PASSWORD }} | |
run: ./gradlew publishPlugin | |
- name: Prepare release notes | |
id: release_notes | |
shell: bash | |
run: | | |
CHANGELOG="$(./gradlew getChangelog -q)" | |
echo 'version_release_notes<<EOF' >> $GITHUB_OUTPUT | |
echo "$CHANGELOG" >> $GITHUB_OUTPUT | |
echo 'EOF' >> $GITHUB_OUTPUT | |
echo "Release notes to be added:" | |
echo "$CHANGELOG" | |
- name: Create new tag and release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git tag ${{ steps.properties.outputs.pluginVersionFull }} | |
git push origin ${{ steps.properties.outputs.pluginVersionFull }} | |
gh release create ${{ steps.properties.outputs.pluginVersionFull }} --title ${{ steps.properties.outputs.pluginVersionFull }} --target ${{ steps.properties.outputs.currCommit }} -F- <<EOF | |
${{ steps.release_notes.outputs.version_release_notes }} | |
EOF | |
- name: Upload Release Built Artifact | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release upload ${{ steps.properties.outputs.pluginVersionFull }} ./build/distributions/* | |
- name: Create Pull Request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
VERSION="${{ steps.properties.outputs.pluginVersionFull }}" | |
BRANCH="release-changelog-update-$VERSION" | |
git config user.email "action@github.com" | |
git config user.name "GitHub Action" | |
git checkout -b $BRANCH | |
git commit -am ":moyai: ${VERSION}" -m "[skip ci]" | |
git push --set-upstream origin $BRANCH | |
- name: Close Milestone | |
continue-on-error: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh api repos/{owner}/{repo}/milestones \ | |
--jq '.[] | select(.title == "${{ steps.properties.outputs.pluginVersionFull }}") | .number' \ | |
| xargs -I '{}' gh api -X PATCH repos/{owner}/{repo}/milestones/{} -F state='closed' |