Skip to content

Commit

Permalink
do not create releases automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
dsame committed Jul 27, 2024
1 parent 46e416c commit 5580a67
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/convert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,24 @@ permissions:

jobs:
build:
uses: ./.github/workflows/build-steps.yml
uses: ./.github/workflows/build-steps.yml
# i do not want to mess with atomatically created releases
# release:
# runs-on: ubuntu-latest
# needs: build
# if: startsWith(github.ref, 'refs/tags/v')
# steps:
# - name: Extract tag name
# id: extract_tag_name
# run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
#
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ env.TAG_NAME }}
# release_name: Release ${{ env.TAG_NAME }}
# draft: false
# prerelease: false
11 changes: 0 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,6 @@ jobs:
run: |
zip whisper.tflite-${{ github.event.release.tag_name }}.zip whisper.tflite
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ env.TAG_NAME }}
# release_name: Release ${{ env.TAG_NAME }}
# draft: false
# prerelease: false

- name: Upload release package
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit 5580a67

Please sign in to comment.