Skip to content

Commit a5c4e7c

Browse files
committed
ci: do not publish draft-release if no tag
Disable draft release creation if the workflow is triggered by non-tag event. Use the last part of tag name for Gentoo archives generation if it contains '/'. It is equired to be able to work with branch names in case of manual publish workflow invocation.
1 parent e207bcb commit a5c4e7c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.gen_tarballs.sh

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ fi
4646

4747
TAG_ORIG=${TAG}
4848
TAG=${TAG//v}
49+
TAG=${TAG##*/} # Remove everything before the last / to avoid using / in file names.
4950
TMPDIR="/tmp/gentoo_tarballs"
5051
TT_DIR="${TMPDIR}/tt-${TAG}"
5152

.github/workflows/publish.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,19 @@ jobs:
182182
rm ./packages-macos/tt*checksums.txt
183183
mv checksums.txt ./packages-macos/
184184
185+
- name: Set GoReleaser flags
186+
id: set-goreleaser-flags
187+
run: |
188+
if ${{ startsWith(github.ref, 'refs/tags') }} ; then
189+
echo "GORELEASER_FLAGS=--skip-validate" >> $GITHUB_OUTPUT
190+
else
191+
echo "GORELEASER_FLAGS=--snapshot" >> $GITHUB_OUTPUT
192+
fi
193+
185194
- name: Release
186195
uses: goreleaser/goreleaser-action@v2
187196
with:
188-
args: release --config ./goreleaser/.goreleaser_publish.yml --skip-validate
197+
args: release ${{ steps.set-goreleaser-flags.outputs.GORELEASER_FLAGS }} --config ./goreleaser/.goreleaser_publish.yml
189198
env:
190199
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
191200

0 commit comments

Comments
 (0)