Skip to content

Commit 662112e

Browse files
committed
commenting github specific release for now
1 parent 31294c7 commit 662112e

File tree

1 file changed

+34
-33
lines changed

1 file changed

+34
-33
lines changed

.github/workflows/build_wheels.yml

Lines changed: 34 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -218,36 +218,37 @@ jobs:
218218
with:
219219
packages-dir: dist/*
220220

221-
create_release:
222-
name: Create Release
223-
needs: [build_wheels_linux, build_wheels_macos, build_wheels_windows]
224-
runs-on: ubuntu-latest
225-
if: startsWith(github.ref, 'refs/tags/quaddtype-v')
226-
227-
steps:
228-
- name: Checkout code
229-
uses: actions/checkout@v2
230-
231-
- name: Download all workflow run artifacts
232-
uses: actions/download-artifact@v4
233-
with:
234-
path: artifacts
235-
236-
- name: Create Release
237-
id: create_release
238-
uses: actions/create-release@v1
239-
env:
240-
GITHUB_TOKEN: ${{ secrets.QUADDTYPE_GITHUB_TOKEN }}
241-
with:
242-
tag_name: ${{ github.ref }}
243-
release_name: Release ${{ github.ref }}
244-
draft: false
245-
prerelease: false
246-
247-
- name: Upload Release Assets
248-
uses: softprops/action-gh-release@v1
249-
if: startsWith(github.ref, 'refs/tags/')
250-
with:
251-
files: ./artifacts/**/*.whl
252-
env:
253-
GITHUB_TOKEN: ${{ secrets.QUADDTYPE_GITHUB_TOKEN }}
221+
# With the current setup, we are not creating a release on GitHub.
222+
# create_release:
223+
# name: Create Release
224+
# needs: [build_wheels_linux, build_wheels_macos, build_wheels_windows]
225+
# runs-on: ubuntu-latest
226+
# if: startsWith(github.ref, 'refs/tags/quaddtype-v')
227+
228+
# steps:
229+
# - name: Checkout code
230+
# uses: actions/checkout@v2
231+
232+
# - name: Download all workflow run artifacts
233+
# uses: actions/download-artifact@v4
234+
# with:
235+
# path: artifacts
236+
237+
# - name: Create Release
238+
# id: create_release
239+
# uses: actions/create-release@v1
240+
# env:
241+
# GITHUB_TOKEN: ${{ secrets.QUADDTYPE_GITHUB_TOKEN }}
242+
# with:
243+
# tag_name: ${{ github.ref }}
244+
# release_name: Release ${{ github.ref }}
245+
# draft: false
246+
# prerelease: false
247+
248+
# - name: Upload Release Assets
249+
# uses: softprops/action-gh-release@v1
250+
# if: startsWith(github.ref, 'refs/tags/')
251+
# with:
252+
# files: ./artifacts/**/*.whl
253+
# env:
254+
# GITHUB_TOKEN: ${{ secrets.QUADDTYPE_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)