forked from open-telemetry/opentelemetry-collector-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.18 KB
/
ci-goreleaser.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Continuous Integration - GoReleaser
on:
push:
branches: [main]
paths:
- ".goreleaser.yaml"
- "distributions/axoflow-otel-collector/manifest.yaml"
pull_request:
branches: [main]
paths:
- ".goreleaser.yaml"
- "distributions/axoflow-otel-collector/manifest.yaml"
jobs:
check-goreleaser:
name: Check GoReleaser Configuration
strategy:
matrix:
GOOS: [linux]
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '~1.21.7'
check-latest: true
- name: Generate the sources
run: make generate-sources
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: v1.24.0
args: --snapshot --clean --skip=sign,sbom --timeout 2h
env:
GOOS: ${{ matrix.GOOS }}