From b78d53c4e1c2cdce0b8d06088b817f7b61849824 Mon Sep 17 00:00:00 2001 From: bpcreech <35012922+bpcreech@users.noreply.github.com> Date: Sun, 4 Feb 2024 18:20:42 -0500 Subject: [PATCH] Update release.yaml --- .github/workflows/release.yaml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4b9bb3a..97b9d5c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,28 +23,9 @@ jobs: - run: npm run build - name: Tar build - run: tar cvfz build.tar.gz dist + run: cd dist && tar cvfz build.tar.gz * - name: Make release uses: ncipollo/release-action@v1 with: artifacts: "build.tar.gz" - - # - name: Create Release - # id: create_release - # uses: actions/create-release@v1 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # with: - # tag_name: ${{ github.ref }} - # release_name: Release ${{ github.ref }} - - # - name: Upload Build Asset - # uses: actions/upload-release-asset@v1 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # with: - # upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - # asset_path: ./build.tar.gz - # asset_name: build.tar.gz - # asset_content_type: application/tar+gzip