From ce1e50b5e0d5a039d6fa015a95adfefafbccdc70 Mon Sep 17 00:00:00 2001 From: Firas al-Khalil Date: Mon, 16 Sep 2024 11:28:10 +0200 Subject: [PATCH] cd: remove scheduled release job --- .github/workflows/cd.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index dc9dfee..1a66538 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -54,23 +54,3 @@ jobs: ./lib/* env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - release-fixed-assets: - needs: [build] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Prepare git # To get tags from `git describe` - run: git fetch --prune --unshallow - - name: Release - if: ${{ github.event_name == 'schedule' }} - uses: softprops/action-gh-release@v2 - with: - name: Release - draft: true - prerelease: false - files: ref - tag_name: ${{ steps.vars.outputs.sha_short }} - make_latest: false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}