[opampsupervisor] Reapply and fix MSI installer with fixed release wo… #250
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release k8s | |
| on: | |
| push: | |
| tags: ["v*"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| name: Release k8s | |
| uses: ./.github/workflows/base-release.yaml | |
| with: | |
| distribution: otelcol-k8s | |
| goos: '[ "linux" ]' | |
| goarch: '[ "amd64", "arm64", "ppc64le", "riscv64", "s390x" ]' | |
| nightly: ${{ contains(github.ref, '-nightly') }} | |
| secrets: inherit | |
| permissions: write-all | |
| release-windows: | |
| name: Release k8s (Windows) | |
| if: ${{ !contains(github.ref, '-nightly') }} | |
| uses: ./.github/workflows/base-release.yaml | |
| with: | |
| distribution: otelcol-k8s | |
| goos: '[ "windows" ]' | |
| goarch: '[ "386", "amd64" ]' | |
| runner_os: windows-2022 | |
| secrets: inherit | |
| permissions: write-all |