Skip to content

Commit

Permalink
Final tweak to enable the rest of the release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gsleap committed Oct 17, 2024
1 parent 7b585fc commit 6247a40
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ name: Releasev2

on:
push:
branches:
- new_maturin_action_for_releases
pull_request:
tags:
- "v*"
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -192,7 +191,7 @@ jobs:
create-github-release:
name: Create a new github release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tagsTEST/') }}
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [build_linux, build_macos]
environment: CI
steps:
Expand All @@ -215,7 +214,7 @@ jobs:
pypi_release:
name: PyPi Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tagsTEST/') }}
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [create-github-release]
steps:
- uses: actions/download-artifact@v4
Expand All @@ -233,7 +232,7 @@ jobs:
rust_release:
name: Publish to crates.io
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tagsTEST/') }}
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [create-github-release]
environment: CI
steps:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Changes in each release are listed below.
* Fixed test that was failing under Arm64
* Removed Python 3.8 support as it is now end of life
* Added tests for Python 3.13
* Removed tests for macos-12 as it will be unsupported by github actions by end of 2024
* Added tests for macos-15

## 1.5.0 20-Aug-2024

Expand Down

0 comments on commit 6247a40

Please sign in to comment.