Release v0.9.0 #20
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 Draft Release on new tag | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
permissions: | |
contents: write | |
jobs: | |
black: | |
uses: ./.github/workflows/python-black.yml | |
build: | |
needs: black | |
uses: ./.github/workflows/python-build.yml | |
autorelease: | |
name: Create Draft Release | |
needs: [black, build] | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get version of project | |
run: | | |
PROJECT_VERSION=$(grep -F "__version__ =" netbox_data_flows/__init__.py | cut -d\" -f2) | |
echo "Version from __init__.py: ${PROJECT_VERSION}" | |
echo "PROJECT_VERSION=${PROJECT_VERSION}" >> $GITHUB_ENV | |
- run: mkdir dist | |
- uses: actions/download-artifact@v4 | |
with: | |
name: distributions | |
path: dist/ | |
- name: Prepare release Notes | |
run: git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s%n * %an <%ae>' --no-merges >> ".github/RELEASE-TEMPLATE.md" | |
- name: Create Release Draft | |
uses: softprops/action-gh-release@v2 | |
with: | |
body_path: ".github/RELEASE-TEMPLATE.md" | |
draft: true | |
files: | | |
dist/netbox_data_flows-${{env.PROJECT_VERSION}}.tar.gz | |
dist/netbox_data_flows-${{env.PROJECT_VERSION}}-py3-none-any.whl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |