Skip to content

Commit

Permalink
auto
Browse files Browse the repository at this point in the history
  • Loading branch information
A-J-Bauer committed Mar 1, 2024
1 parent bfa93d7 commit 0c54722
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,21 @@ jobs:
name: Create release
env:
VERSION: ${{needs.publish.outputs.version}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
zip -r dist.zip ./dist/*
gh release create "$VERSION" \
--repo="$GITHUB_REPOSITORY" \
--title="${VERSION}" \
--generate-notes
gh release upload "$VERSION" dist.zip
gh release delete-asset "$VERSION" "${VERSION}.tar.gz"
gh release delete-asset "$VERSION" "${VERSION}.zip"
- id: step3
name: Delete default assets
env:
VERSION: ${{needs.publish.outputs.version}}
run: |
gh release delete-asset "$VERSION" "${VERSION}.zip" -y
gh release delete-asset "$VERSION" "${VERSION}.tar.gz" -y
echo "::notice file=dotnet.yml::Created release $VERSION"
2 changes: 1 addition & 1 deletion vgauge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// vgauge.js 1.0.22, copyright (c) 2024 A.J.Bauer, licensed under the MIT License,see LICENSE.txt for full license text.
// vgauge.js 1.0.23, copyright (c) 2024 A.J.Bauer, licensed under the MIT License,see LICENSE.txt for full license text.

class VGauge {
static isNonEmptyString(s) {
Expand Down

0 comments on commit 0c54722

Please sign in to comment.