Skip to content

Commit c3cefc9

Browse files
committed
Use -dev python releases in dev branch.
1 parent 4b7189e commit c3cefc9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
1213
- name: Set up Python environment
1314
uses: actions/setup-python@v1
1415
with:
1516
python-version: "3.X"
17+
1618
- name: Set build variables
1719
id: build-vars
1820
env:
@@ -29,6 +31,7 @@ jobs:
2931
echo "TAG=${TAG}" >> ${GITHUB_OUTPUT}
3032
echo "PYTHON_VER=${PYTHON_VER}" >> ${GITHUB_OUTPUT}
3133
echo "BUILD_NUMBER=${BUILD_NUMBER}" >> ${GITHUB_OUTPUT}
34+
3235
- name: Update Release Asset to S3
3336
env:
3437
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}

.github/workflows/release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
target: ['macOS', 'iOS', 'tvOS', 'watchOS']
2626
steps:
2727
- uses: actions/checkout@v4
28+
2829
- name: Set build variables
2930
id: build-vars
3031
env:
@@ -41,10 +42,12 @@ jobs:
4142
echo "TAG=${TAG}" >> ${GITHUB_OUTPUT}
4243
echo "PYTHON_VER=${PYTHON_VER}" >> ${GITHUB_OUTPUT}
4344
echo "BUILD_NUMBER=${BUILD_NUMBER}" >> ${GITHUB_OUTPUT}
45+
4446
- name: Set up Python
4547
uses: actions/[email protected]
4648
with:
47-
python-version: "${{ steps.build-vars.output.PYTHON_VER }}"
49+
python-version: "${{ steps.build-vars.output.PYTHON_VER }}-dev"
50+
4851
- name: Build ${{ matrix.target }}
4952
run: |
5053
# Do the build for the requested target.
@@ -70,6 +73,7 @@ jobs:
7073
echo "XZ_VERSION=${XZ_VERSION}" >> ${GITHUB_OUTPUT}
7174
echo "OPENSSL_VERSION=${OPENSSL_VERSION}" >> ${GITHUB_OUTPUT}
7275
echo "LIBFFI_VERSION=${LIBFFI_VERSION}" >> ${GITHUB_OUTPUT}
76+
7377
- name: Upload build artifact
7478
uses: actions/[email protected]
7579
with:

0 commit comments

Comments
 (0)