Skip to content

Commit 02a1873

Browse files
Merge pull request #3 from vilsonrodrigues/fix/ci-runner
fix: use ubuntu latest
2 parents e634b9c + fca67a9 commit 02a1873

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ name: Release
44
run-name: Release version ${{ github.ref_name }} of the SDK
55

66
on:
7-
push:
8-
tags:
9-
- "v*"
107
workflow_dispatch:
118

129
# ensures only a single instance of this release workflow is running at any one time
@@ -22,7 +19,7 @@ env:
2219
jobs:
2320
get_tag_details:
2421
name: Get Tag Details
25-
runs-on: msgspec-ext-python-runner
22+
runs-on: ubuntu-latest
2623
outputs:
2724
tag_name: ${{ steps.release.outputs.tag_name }}
2825
new_version: ${{ steps.release.outputs.new_version }}
@@ -58,7 +55,7 @@ jobs:
5855
setup_build_and_publish:
5956
name: Build Package and Publish to PyPI
6057
needs: [get_tag_details]
61-
runs-on: msgspec-ext-python-runner
58+
runs-on: ubuntu-latest
6259
permissions:
6360
contents: read
6461
id-token: write # Required for trusted publishing to PyPI
@@ -98,7 +95,7 @@ jobs:
9895
github_release:
9996
name: Create GitHub Release
10097
needs: [get_tag_details, setup_build_and_publish]
101-
runs-on: msgspec-ext-python-runner
98+
runs-on: ubuntu-latest
10299
permissions:
103100
contents: write
104101
steps:

0 commit comments

Comments
 (0)