Skip to content

Commit

Permalink
Pull code in github tag action
Browse files Browse the repository at this point in the history
  • Loading branch information
wvangeit committed Jul 30, 2024
1 parent 6b71d86 commit 9a3f050
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:

jobs:
tag:
name: Tagging new version
name: Tag new version
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
new_tag: ${{ steps.tag_version.outputs.new_tag}}
changelog: ${{ steps.tag_version.outputs.changelog}}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Bump version and push tag
id: tag_version
if: github.ref == 'refs/heads/master'
Expand All @@ -23,12 +26,12 @@ jobs:
DEFAULT_BUMP: patch

wheels:
name: Building wheel on ${{ matrix.python }} ${{ matrix.os }} ${{ matrix.arch }}
name: Build wheel on ${{ matrix.python }} ${{ matrix.os }} ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-20.04]
os: [ubuntu-latest]
python: [cp38,cp39,cp310,cp311,cp312]
arch: [x86_64]
env:
Expand Down Expand Up @@ -58,7 +61,7 @@ jobs:
path: ./wheelhouse/*.whl

release:
name: Creating new github release
name: Create new github release
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down

0 comments on commit 9a3f050

Please sign in to comment.