bump: version 3.3.0b0 → 3.3.0 #4
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: cd | |
on: | |
push: | |
tags: | |
# Stable releases (1.2.3) | |
- 'v?[0-9]+.[0-9]+.[0-9]+' | |
# Beta releases (1.2.3b0) | |
- 'v?[0-9]+.[0-9]+.[0-9]+b[0-9]+' | |
jobs: | |
ci: | |
uses: ./.github/workflows/ci.yml | |
build: | |
needs: [ci] | |
uses: ./.github/workflows/reusable-build.yml | |
# TODO: Test generated artifacts before releasing and publish | |
release: | |
needs: [ci, build] | |
runs-on: ubuntu-24.04 | |
environment: production | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Download all artifacts | |
uses: actions/download-artifact@v4 | |
- name: Get version from tag | |
id: get_version | |
run: | | |
VERSION=${GITHUB_REF#refs/tags/} | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
echo "Tag version: $VERSION" | |
- name: Generate release notes | |
id: release_notes | |
run: | | |
PREV_TAG=$(git describe --tags --abbrev=0 HEAD^) | |
NOTES=$(git log ${PREV_TAG}..HEAD --pretty=format:"* %s (%h)") | |
echo "RELEASE_NOTES<<EOF" >> $GITHUB_OUTPUT | |
echo "## What's Changed" >> $GITHUB_OUTPUT | |
echo "$NOTES" >> $GITHUB_OUTPUT | |
echo "EOF" >> $GITHUB_OUTPUT | |
- name: Rename executables | |
run: | | |
mv safety-linux/safety safety-linux/safety-linux | |
mv safety-macos/safety safety-macos/safety-macos | |
- name: Create GitHub Release | |
id: create_release | |
uses: softprops/[email protected] | |
with: | |
name: Version ${{ steps.get_version.outputs.version }} | |
body: ${{ steps.release_notes.outputs.RELEASE_NOTES }} | |
files: | | |
safety-linux/safety-linux | |
safety-windows/safety.exe | |
safety-macos/safety-macos | |
dist/* | |
prerelease: ${{ contains(steps.get_version.outputs.version, 'b') }} | |
token: ${{ secrets.SAFETY_BOT_TOKEN }} | |
publish: | |
needs: [release] | |
runs-on: ubuntu-24.04 | |
environment: | |
name: pypi | |
url: https://pypi.org/p/safety | |
permissions: | |
id-token: write | |
steps: | |
- name: Download dist artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: dist/ | |
verbose: true | |
print-hash: true |