From b772f42a89dbdac5e49d7cfec0750ec5bd8ec8a1 Mon Sep 17 00:00:00 2001 From: Mikhail Dzianishchyts Date: Thu, 3 Oct 2024 13:54:16 +0300 Subject: [PATCH] Trigger `pip` release on github release publishing --- .github/workflows/prepare-release.yml | 75 ++++++++++++++++++++++ .github/workflows/release.yml | 91 +++------------------------ 2 files changed, 85 insertions(+), 81 deletions(-) create mode 100644 .github/workflows/prepare-release.yml diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml new file mode 100644 index 0000000..231e49a --- /dev/null +++ b/.github/workflows/prepare-release.yml @@ -0,0 +1,75 @@ +name: 'prepare 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 + with: + python-version: '3.11' + + - 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: Collect the release distributions + run: | + mkdir -p release/ + cp jjava/target/jjava-${{ github.ref_name }}-kernelspec.tar.gz release/ + cp -r dist/* release/ + + - name: Store the release distributions + uses: actions/upload-artifact@v4 + with: + name: release-distributions + path: release/ + 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 \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e10b68..44e0d2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,84 +1,12 @@ -name: 'create release' +name: 'release packages' on: - push: - tags: - - '[0-9]+.[0-9]+.?[ab]?[0-9]+' -permissions: - # allow a write access to GitHub Releases - contents: write + release: + types: [published] jobs: - build: + release-pypi: runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - - 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 @@ -86,13 +14,14 @@ jobs: id-token: write steps: - - name: Download distributions - uses: actions/download-artifact@v4 + - name: Download release assets + uses: robinraju/release-downloader@v1 with: - name: python-distributions - path: dist/ + tag: ${{ github.ref_name }} + fileName: jjava-!(kernelspec)*@(.tar.gz|.whl) + out-file-path: dist/ - - name: Deploy distributions to PyPI + - name: Publish distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://test.pypi.org/legacy/