From f7a0321401656fb201ff80e19d65c93cf0dfb3dd Mon Sep 17 00:00:00 2001 From: Christopher Moussa Date: Wed, 13 Sep 2023 12:04:26 -0700 Subject: [PATCH] ci: remove upload-tarball step Problem: the upload-tarball step uses paths specified in the prep-release action, which was removed in flux-accounting#375. Remove the upload-tarball step. --- .github/workflows/main.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8dad9df3..e349be70 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -136,13 +136,3 @@ jobs: files: flux-accounting*.tar.gz body: | View [Release Notes](https://github.com/${{ github.repository }}/blob/${{ matrix.tag }}/NEWS.md) for flux-accounting ${{ matrix.tag }} - - - name: upload tarball - id: upload-tarball - if: success() && matrix.create_release - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ${{ steps.prep_release.outputs.tarball }} - asset_name: ${{ steps.prep_release.outputs.tarball }} - asset_content_type: "application/gzip"