From a45e3e54d9fde06c71f8a55655f1729325257518 Mon Sep 17 00:00:00 2001 From: Tom Fay Date: Wed, 20 Nov 2024 22:41:41 +0000 Subject: [PATCH] remove release tarball task --- .github/workflows/release.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index e8c15af..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Generates a source tarball, including depedencies, and uploads it to GitHub releases -name: release - -on: push - -jobs: - sdist: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - name: Make source tarball - run: | - set -x - mkdir -p .cargo - touch sdist.tar.gz - cargo vendor --locked >> .cargo/config.toml - version=$(cargo pkgid -p rpmoci | cut -d '#' -f 2) - tar --transform="s+^\./+rpmoci-$version/+" --exclude='.git' --exclude='target' --exclude='sdist.tar.gz' -czvf sdist.tar.gz . - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - files: | - sdist.tar.gz