Skip to content

Commit 9613de6

Browse files
committed
build: align ci to scaffold / remove non-semver-tags for go-releaser
1 parent 96bdac9 commit 9613de6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

+6
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,17 @@ jobs:
1818
audit:
1919
name: Audit
2020
runs-on: ubuntu-latest
21+
timeout-minutes: 30
2122
steps:
2223
- name: Checkout repository
2324
uses: actions/checkout@v3
2425
with:
2526
fetch-depth: 0
2627

28+
- name: Remove non-semver tags (from helmchart) for goreleaser to work properly
29+
run: |
30+
git tag -d $(git tag -l | grep -v "^v[0-9]*.[0-9]*.[0-9]*")
31+
2732
- uses: actions/setup-go@v4
2833
with:
2934
go-version: '^1.20.0'
@@ -55,6 +60,7 @@ jobs:
5560
needs:
5661
- audit
5762
runs-on: ubuntu-latest
63+
timeout-minutes: 60
5864
permissions:
5965
contents: read
6066
packages: write

0 commit comments

Comments
 (0)