From dc28c4ec35adab669a62e04d473b239ccc3af84f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 22 May 2024 10:47:48 +0300 Subject: [PATCH] ci/release: remove the release tarball from artifacts The github artifacts from the API are reproducible; there is no need to redundantly generate and store them. --- .github/workflows/release.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f5e422f..f6e08ef 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,15 +8,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v4 - - name: Archive - run: make inotify-info-${{ github.ref_name }}.tar.gz - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/v') with: - files: inotify-info-${{ github.ref_name }}.tar.gz generate_release_notes: true draft: true prerelease: true