Skip to content

Commit ee40e92

Browse files
committed
corrected the release process
1 parent b40c034 commit ee40e92

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/build-aot.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167

168168
# Create release if this is a tag
169169
release:
170-
if: startsWith(github.ref, 'refs/tags/v')
170+
if: startsWith(github.ref, 'refs/tags/')
171171
needs: build
172172
runs-on: ubuntu-latest
173173
permissions:
@@ -233,20 +233,18 @@ jobs:
233233
### Usage:
234234
```bash
235235
# Interactive mode
236-
./SharpCaster.Console
236+
./sharpcaster
237237
238238
# Command-line mode
239-
./SharpCaster.Console "Living Room TV" play "https://example.com/video.mp4"
239+
./sharpcaster "Living Room TV" play "https://example.com/video.mp4"
240240
```
241241
242242
For detailed usage instructions, see the README.txt file included in each download.
243243
244244
# Publish to Chocolatey
245245
- name: Update Chocolatey package with dynamic checksums
246246
run: |
247-
# Extract version from tag (remove 'v' prefix if present)
248247
VERSION=${GITHUB_REF#refs/tags/}
249-
VERSION=${VERSION#v}
250248
echo "Publishing version: $VERSION"
251249
252250
# Calculate checksums for the new .exe files

0 commit comments

Comments
 (0)