Skip to content

Commit 9846f42

Browse files
authored
ci: change debug to verbose in goreleaser (#471)
* ci: change debug to verbose in goreleaser Signed-off-by: Alfonso Subiotto Marques <[email protected]> * ci: some more goreleaser fixes Signed-off-by: Alfonso Subiotto Marques <[email protected]> * ci: and avoid digest updates in renovate Signed-off-by: Alfonso Subiotto Marques <[email protected]> --------- Signed-off-by: Alfonso Subiotto Marques <[email protected]>
1 parent d2360fc commit 9846f42

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.github/workflows/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
distribution: goreleaser
7070
version: ${{ env.GORELEASER_VERSION }}
71-
args: build --clean --skip=validate --snapshot --debug
71+
args: build --clean --skip=validate --snapshot --verbose
7272

7373
- name: Archive generated artifacts
7474
uses: actions/upload-artifact@v4

.goreleaser.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: 2
12
before:
23
hooks:
34
- go mod tidy
@@ -31,7 +32,7 @@ archives:
3132
{{- else }}{{ .Arch }}{{ end }}
3233
format_overrides:
3334
- goos: windows
34-
format: zip
35+
formats: ['zip']
3536
checksum:
3637
name_template: "checksums.txt"
3738
source:

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ COPY dist dist
1313
# NOTICE: See goreleaser.yml for the build paths.
1414
RUN if [ "${TARGETARCH}" = 'amd64' ]; then \
1515
cp "dist/parca-load_${TARGETOS}_${TARGETARCH}_${TARGETVARIANT:-v1}/parca-load" . ; \
16+
elif [ "${TARGETARCH}" = 'arm64' ]; then \
17+
cp "dist/parca-load_${TARGETOS}_${TARGETARCH}_${TARGETVARIANT:-v8.0}/parca-load" . ; \
1618
elif [ "${TARGETARCH}" = 'arm' ]; then \
1719
cp "dist/parca-load_${TARGETOS}_${TARGETARCH}_${TARGETVARIANT##v}/parca-load" . ; \
1820
else \

renovate.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,12 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"local>parca-dev/.github:renovate-config"
5+
],
6+
"packageRules": [
7+
{
8+
"matchManagers": ["github-actions"],
9+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
10+
"enabled": false
11+
}
512
]
613
}

0 commit comments

Comments
 (0)