Skip to content

Commit 74ad81f

Browse files
committed
added missing template step
1 parent c4da3a3 commit 74ad81f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/cicd.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
restore-keys: |
4040
${{ runner.os }}-go-
4141
42+
- name: Template app yaml
43+
run: |
44+
./run.sh template-app
45+
4246
- name: Run GoReleaser
4347
uses: goreleaser/goreleaser-action@v6
4448
with:

goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ builds:
2222
archives:
2323
- name_template: '{{ .ProjectName }}_{{ replace .Version "v" "" }}_{{ .Os }}_{{ .Arch }}'
2424
files:
25-
- ./yang/*
26-
- "./{{ .ProjectName }}.yml"
25+
- yang/**/*
26+
- "{{ .ProjectName }}.yml"
2727

2828
checksum:
2929
name_template: checksums.txt

0 commit comments

Comments
 (0)