adjust github actions #26
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: Build and Release | ||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' # Trigger on semantic versioning tags | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
- name: Get version from tag | ||
id: vars | ||
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel setuptools-scm | ||
- name: Build package | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
- name: Create Release | ||
id: create_release | ||
run: | | ||
TAG_NAME=${GITHUB_REF#refs/tags/} | ||
BRANCH_NAME=$(echo "${GITHUB_REF}" | sed 's/refs\/tags\///') # Correctly extract branch name | ||
echo "Creating release for tag $TAG_NAME on branch $BRANCH_NAME" | ||
echo "TAG_NAME=$TAG_NAME" >> $GITHUB_ENV | ||
echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV | ||
- name: Upload Package to Release | ||
if: startsWith(github.ref, 'refs/tags/v') # Run this step if the tag starts with 'v' | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ env.TAG_NAME }} # Tag to create release | ||
release_name: Release ${{ env.TAG_NAME }} from branch ${{ github.ref#refs/tags/}} # Include branch name in release title | ||
Check failure on line 50 in .github/workflows/release.yml GitHub Actions / Build and ReleaseInvalid workflow file
|
||
files: | | ||
dist/* | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |