From a87fb2c89507c08a0e6fee27999accf91aea3178 Mon Sep 17 00:00:00 2001 From: jimafisk Date: Tue, 5 Nov 2024 13:34:01 -0500 Subject: [PATCH] Don't tar / zip release (#7). --- .github/workflows/release.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 11126debd..7cbdf03d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,18 +10,13 @@ jobs: runs-on: ubuntu-latest permissions: contents: write # Needed for creating releases - + steps: - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 # Important for getting all tags - - - name: Create ZIP archive - run: | - zip --symlinks -r osxcross-target.zip . -x ".git/*" ".github/*" - tar --dereference -czf osxcross-target.tar.gz --exclude=".git" --exclude=".github" . - + - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -30,6 +25,3 @@ jobs: name: Release ${{ github.ref_name }} generate_release_notes: true # Generate release notes automatically from commits prerelease: ${{ contains(github.ref, '-') }} # Allows marking a pre-release based on tag format (e.g., v1.0.0-beta) - files: | - osxcross-target.zip - osxcross-target.tar.gz