Skip to content

Update setup.py, bumping version number #2

Update setup.py, bumping version number

Update setup.py, bumping version number #2

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+' # like v1.0.0
jobs:
build-dist:
name: Package PyESAPI and Release
runs-on: windows-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Update pip
run: py -m pip install --upgrade pip
- name: Build package
run: |
py -m pip install --upgrade build
py -m build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
- name: Create Release
uses: softprops/action-gh-release@v2
with:
name: PyESAPI ${{ github.ref_name }}
token: ${{ secrets.GITHUB_TOKEN }}
draft: true
files: dist/*
body: |
This is the official `${{ github.ref_name }}` release of the PyESAPI for use on Eclipse TBOX or VIC environment for Eclipse versions 15.1 and up.
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
needs: build-dist
environment:
name: pypi
url: https://pypi.org/p/pyesapi
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Publish package distributions to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1