From d93a70f76acdce4cda8b81eb70f242ffc336ca39 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 28 Aug 2023 15:29:00 -0400 Subject: [PATCH] cleanup --- .github/workflows/release.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6710f7b..f1a1d2d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,28 +46,7 @@ jobs: args: --release --target ${{ matrix.target }} - name: Upload Release Asset - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: mosaic-${{ matrix.target }} path: target/${{ matrix.target }}/release/mosaic${{ matrix.target == 'x86_64-pc-windows-gnu' && '.exe' || '' }} - - - release: - needs: build - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Download Artifacts - uses: actions/download-artifact@v2 - - - name: Create GitHub Release and Upload Assets - uses: softprops/action-gh-release@v1 - with: - draft: true - files: | - target/${{ matrix.target }}/release/mosaic${{ matrix.target == 'x86_64-pc-windows-gnu' && '.exe' || '' }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -