We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ccc2c9f + 9b51f9d commit f88edcfCopy full SHA for f88edcf
.github/workflows/release.yml
@@ -4,9 +4,9 @@ on:
4
push:
5
tags:
6
- "*"
7
- workflow_dispatch: # Add this to enable manual triggers
8
- inputs: # Optional: add inputs if you want to parameterize manual runs
9
- tag_name: # Optional: allow specifying a tag when running manually
+ workflow_dispatch:
+ inputs:
+ tag_name:
10
description: "Tag to release"
11
required: false
12
type: string
@@ -27,6 +27,6 @@ jobs:
27
with:
28
distribution: goreleaser
29
version: latest
30
- args: release --rm-dist --timeout 80m
+ args: release --clean --timeout 80m # Changed --rm-dist to --clean
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments