diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 84ba8e0..5ef9c1d 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -37,8 +37,6 @@ 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" \ @@ -46,7 +44,14 @@ jobs: --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" + \ No newline at end of file diff --git a/vgauge.js b/vgauge.js index 75e57a6..2998d2e 100644 --- a/vgauge.js +++ b/vgauge.js @@ -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) {