Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-contrib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
permissions: write-all
release-windows:
name: Release Contrib (Windows)
if: ${{ !contains(github.ref, '-nightly') }}
uses: ./.github/workflows/base-release.yaml
with:
distribution: otelcol-contrib
goos: '[ "windows" ]'
goarch: '[ "386", "amd64", "arm64" ]'
runner_os: windows-2022
nightly: ${{ contains(github.ref, '-nightly') }}
Comment thread
mowies marked this conversation as resolved.
secrets: inherit
permissions: write-all
2 changes: 1 addition & 1 deletion .github/workflows/release-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
permissions: write-all
release-windows:
name: Release Core (Windows)
if: ${{ !contains(github.ref, '-nightly') }}
uses: ./.github/workflows/base-release.yaml
with:
distribution: otelcol
goos: '[ "windows" ]'
goarch: '[ "386", "amd64", "arm64" ]'
runner_os: windows-2022
nightly: ${{ contains(github.ref, '-nightly') }}
secrets: inherit
permissions: write-all
2 changes: 1 addition & 1 deletion .github/workflows/release-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
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", "arm64" ]'
runner_os: windows-2022
nightly: ${{ contains(github.ref, '-nightly') }}
secrets: inherit
permissions: write-all
2 changes: 1 addition & 1 deletion .github/workflows/release-otlp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
permissions: write-all
release-windows:
name: Release OTLP (Windows)
if: ${{ !contains(github.ref, '-nightly') }}
uses: ./.github/workflows/base-release.yaml
with:
distribution: otelcol-otlp
goos: '[ "windows" ]'
goarch: '[ "386", "amd64", "arm64" ]'
runner_os: windows-2022
nightly: ${{ contains(github.ref, '-nightly') }}
secrets: inherit
permissions: write-all
2 changes: 1 addition & 1 deletion cmd/msi-generator/windows-installer.wxs.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name="OpenTelemetry Collector ({{ .Version }}) - {{ .Binary }} distribution"
Id="*"
UpgradeCode="B7C263DD-95A5-436A-A025-DCA5200C2BE3"
Version="{{ if .IsSnapshot }}{{ .RawVersion }}{{ else }}{{ .Version }}{{ end }}"
Version="{{ if .IsNightly }}{{ .RawVersion }}.{{ .Now.Format "00215" }}{{ else if .IsSnapshot }}{{ .RawVersion }}{{ else }}{{ .Version }}{{ end }}"
Manufacturer="OpenTelemetry"
Language="1033">

Expand Down
2 changes: 1 addition & 1 deletion cmd/opampsupervisor/windows-installer.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name="OpenTelemetry OpAMP Supervisor ({{ .Version }})"
Id="*"
UpgradeCode="457B2070-3249-4092-A99E-EF8F7D2F5534"
Version="{{ if .IsSnapshot }}{{ .RawVersion }}{{ else }}{{ .Version }}{{ end }}"
Version="{{ if .IsNightly }}{{ .RawVersion }}.{{ .Now.Format "00215" }}{{ else if .IsSnapshot }}{{ .RawVersion }}{{ else }}{{ .Version }}{{ end }}"
Manufacturer="OpenTelemetry"
Language="1033">

Expand Down
Loading