[maven-release-plugin] prepare release 1.0a6 #13
Workflow file for this run
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: 'create release' | |
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.?[ab]?[0-9]+' | |
permissions: | |
# allow a write access to GitHub Releases | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Install build dependencies | |
run: pip install build | |
- name: Build | |
env: | |
SETUPTOOLS_SCM_PRETEND_VERSION_FOR_jjava: ${{ github.ref_name }} | |
run: | | |
mvn clean verify -U | |
python -m build | |
- name: Store the release distribution archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-distributions | |
path: jjava/target/jjava-${{ github.ref_name }}.zip | |
if-no-files-found: error | |
- name: Store the python distribution packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-distributions | |
path: dist/ | |
if-no-files-found: error | |
prepare-release: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- name: Download distributions | |
uses: actions/download-artifact@v4 | |
with: | |
name: release-distributions | |
path: release/ | |
- name: Create release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ github.ref_name }} | |
body: JJava ${{ github.ref_name }} release | |
draft: true | |
prerelease: false | |
files: release/* | |
fail_on_unmatched_files: true | |
deploy-pypi: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
environment: | |
name: pypi | |
url: https://pypi.org/p/jjava | |
permissions: | |
id-token: write | |
steps: | |
- name: Download distributions | |
uses: actions/download-artifact@v4 | |
with: | |
name: python-distributions | |
path: dist/ | |
- name: Deploy distributions to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |
verbose: true |