forked from geosolutions-it/MapStore2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Automation Process (geosolutions-it#9555)
* Add actions * Updated workflows for deprecations and security * Fixed changelog stuff * renamed release workflow file * Fixed concurrency * Separated release steps * Update for uniformity the scripts. Fixed wrong java modules set * Fixed wrong version system in binary * Fixed version update script * Updated documentation. Last fixes * Removed file committed in error * Improved docs * Improved docs * Improved docs * Minor fixes to doc * Fixed release procedure missing paragraph * Update procedure for linking latest stable doc * Update release_steps.md * Update .github/ISSUE_TEMPLATE/release_steps.md * Apply suggestions from code review Co-authored-by: Matteo V. <[email protected]> --------- Co-authored-by: Matteo V. <[email protected]>
- Loading branch information
1 parent
f312509
commit 39e9019
Showing
9 changed files
with
628 additions
and
57 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Create Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version to release. (format: `YYYY.MM.mm`)' | ||
required: true | ||
jobs: | ||
################ | ||
# Build | ||
################ | ||
build: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
steps: | ||
################ | ||
# Protect master branch | ||
################ | ||
- name: Check branch | ||
if: ${{ github.repository != 'geosolutions-it/MapStore2' || github.ref == 'master' }} | ||
uses: actions/github-script@v3 | ||
with: | ||
script: | | ||
core.setFailed('This workflow can not run on master branch') | ||
- uses: actions/checkout@v3 | ||
- name: "checking out" | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: "setting up npm" | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
- name: "setting up Java" | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: '11.x' | ||
############ | ||
# CACHING | ||
########## | ||
- name: "cache node modules" | ||
uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-node-modules | ||
with: | ||
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS | ||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-build-${{ env.cache-name }}- | ||
${{ runner.os }}-build- | ||
${{ runner.os }}- | ||
- name: "cache maven dependencies" | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.m2/repository | ||
key: mapstore-${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | ||
restore-keys: | | ||
mapstore-${{ runner.os }}-maven- | ||
- name: Build | ||
id: "build" | ||
run: "./build.sh ${{ github.event.inputs.version }} binary,printingbundle" | ||
- name: "Upload war" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: war | ||
path: product/target/mapstore.war | ||
- name: "Upload binary" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: binary | ||
path: "binary/target/mapstore2-${{ github.event.inputs.version }}-bin.zip" | ||
- name: "Upload printing" | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: printing | ||
path: "java/printing/target/mapstore-printing.zip" | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: "Download war" | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts/ | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
working-directory: artifacts | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | ||
- name: create_release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
commitish: ${{ github.ref }} | ||
tag_name: "v${{ github.event.inputs.version }}" | ||
release_name: "v${{ github.event.inputs.version }}" | ||
body: | | ||
## Main Features | ||
- ... | ||
## Main Improvements | ||
- ... | ||
## Useful links related to **[v${{ github.event.inputs.version }}](https://github.com/geosolutions-it/MapStore2/tree/v${{ github.event.inputs.version }})** | ||
- **[Full Changelog](https://github.com/geosolutions-it/MapStore2/compare/v${{ github.event.inputs.previousVersion }}...v${{ github.event.inputs.version }})** | ||
- **[Implemented enhancements](https://github.com/geosolutions-it/MapStore2/issues?q=is%3Aissue+milestone%3A%22${{ github.event.inputs.version }}%22+is%3Aclosed+label%3Aenhancement)** | ||
- **[Fixed bugs](https://github.com/geosolutions-it/MapStore2/issues?q=is%3Aissue+milestone%3A%22${{ github.event.inputs.version }}%22+is%3Aclosed+label%3Abug)** | ||
- **[Closed issues](https://github.com/geosolutions-it/MapStore2/issues?q=is%3Aissue+milestone%3A%22${{ github.event.inputs.version }}%22+is%3Aclosed)** | ||
- **[MapStore Extension release v${{ github.event.inputs.version }}](https://github.com/geosolutions-it/MapStoreExtension/releases/tag/v${{ github.event.inputs.version }})** | ||
- **[Docker image v${{ github.event.inputs.version }}](xxx)** `< TODO: add this link manually` | ||
- **[MapStore documentation v${{ github.event.inputs.version }}](https://docs.mapstore.geosolutionsgroup.com/en/v${{ github.event.inputs.version }}/)** | ||
draft: true | ||
prerelease: false | ||
- name: Upload Release war | ||
id: upload-release-war | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | ||
asset_path: artifacts/war/mapstore.war | ||
asset_name: mapstore.war | ||
asset_content_type: application/zip | ||
- name: Upload Release binary | ||
id: upload-release-binary | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | ||
asset_path: "artifacts/binary/mapstore2-${{github.event.inputs.version}}-bin.zip" | ||
asset_name: "mapstore2-${{github.event.inputs.version}}-bin.zip" | ||
asset_content_type: application/zip | ||
- name: Upload Release printing | ||
id: upload-release-printing | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | ||
asset_path: artifacts/printing/mapstore-printing.zip | ||
asset_name: mapstore-printing.zip | ||
asset_content_type: application/zip |
Oops, something went wrong.