Skip to content

Commit

Permalink
Trying to add a go-releaser whatever that is
Browse files Browse the repository at this point in the history
  • Loading branch information
tjayrush committed Dec 16, 2024
1 parent 7ead41e commit 112b385
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Test Release
on:
push:
tags:
- 'test-release*' # Triggers on tags starting with 'test-release'
- 'v*.*.*-*' # Triggers on semver tags with a suffix (e.g., v0.0.1-test)
- 'test-release*'
- 'v*.*.*-*'
jobs:
goreleaser:
runs-on: ubuntu-latest
Expand All @@ -21,6 +21,10 @@ jobs:
with:
distribution: goreleaser
version: latest
args: release --snapshot # Enable snapshot mode for testing
args: release --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: List dist Folder Contents
run: |
echo "Listing dist/ folder contents:"
find dist -exec ls -l {} \;

0 comments on commit 112b385

Please sign in to comment.