Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bpcreech authored Feb 4, 2024
1 parent a5a10c0 commit b78d53c
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b78d53c

Please sign in to comment.