Remove release creation
This commit is contained in:
parent
bc6d4992f2
commit
ecc6535443
34
.github/workflows/publish.yml
vendored
34
.github/workflows/publish.yml
vendored
@ -15,28 +15,28 @@ on:
|
|||||||
push
|
push
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
setup_release:
|
# setup_release:
|
||||||
name: Create Release
|
# name: Create Release
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- name: Get the tag version
|
# - name: Get the tag version
|
||||||
id: extract_branch
|
# id: extract_branch
|
||||||
run: echo ::set-output name=branch::${GITHUB_REF#refs/tags/}
|
# run: echo ::set-output name=branch::${GITHUB_REF#refs/tags/}
|
||||||
shell: bash
|
# shell: bash
|
||||||
|
|
||||||
- name: Create Release
|
# - name: Create Release
|
||||||
id: create_release
|
# id: create_release
|
||||||
uses: actions/create-release@v1
|
# uses: actions/create-release@v1
|
||||||
env:
|
# env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
# with:
|
||||||
tag_name: ${{ steps.extract_branch.outputs.branch }}
|
# tag_name: ${{ steps.extract_branch.outputs.branch }}
|
||||||
release_name: ${{ steps.extract_branch.outputs.branch }}
|
# release_name: ${{ steps.extract_branch.outputs.branch }}
|
||||||
|
|
||||||
build_wheels:
|
build_wheels:
|
||||||
name: Build Wheel
|
name: Build Wheel
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
needs: setup_release
|
#needs: setup_release
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user