-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV: Different workflows for git tag / PyPI / GH Release Page (#2596)
Co-authored-by: Stefan <96178532+stefan6419846@users.noreply.github.com>
- Loading branch information
1 parent
eb6b21c
commit 730189d
Showing
3 changed files
with
81 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Create a GitHub release page | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: ["Create git tag"] | ||
types: | ||
- completed | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build_and_publish: | ||
name: Create a GitHub release page | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Prepare variables | ||
id: prepare_variables | ||
run: | | ||
git fetch --tags --force | ||
latest_tag=$(git describe --tags --abbrev=0) | ||
echo "latest_tag=$(git describe --tags --abbrev=0)" >> "$GITHUB_ENV" | ||
echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_ENV" | ||
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64) | ||
echo "tag_body<<$EOF" >> "$GITHUB_ENV" | ||
git --no-pager tag -l "${latest_tag}" --format='%(contents:body)' >> "$GITHUB_ENV" | ||
echo "$EOF" >> "$GITHUB_ENV" | ||
- name: Create GitHub Release 🚀 | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.latest_tag }} | ||
name: Version ${{ env.latest_tag }}, ${{ env.date }} | ||
draft: false | ||
prerelease: false | ||
body: ${{ env.tag_body }} |
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,36 @@ | ||
name: Publish Python Package to PyPI | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*.*.*' | ||
workflow_dispatch: | ||
workflow_run: | ||
workflows: ["Create git tag"] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
build_and_publish: | ||
name: Publish a new version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install Flit | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install flit | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Publish Package to PyPI🚀 | ||
env: | ||
FLIT_USERNAME: '__token__' | ||
FLIT_PASSWORD: ${{ secrets.FLIT_PASSWORD }} | ||
run: | | ||
flit publish |
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