Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.
Merged
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
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-actions_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release actions_check
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o actions_check-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release ansible
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o ansible-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-collect_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release collect_data
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o collect_data-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release debug
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o debug-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release git
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o git-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-interaction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release interaction
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o interaction-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-log.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release log
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o log-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-mail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release mail
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o mail-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-pattern_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release pattern_check
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o pattern_check-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release ping
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o ping-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-port_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release port_checker
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o port_checker-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release ssh
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o ssh-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release terraform
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o terraform-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release test
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o test-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prerelease-action-plugins-wait.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release wait
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o wait-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
build-and-prerelease:
name: Build and Pre-release alertmanager
needs: check-version
if: needs.check-version.outputs.is_prerelease == 'true'
if: github.event_name == 'workflow_dispatch' || needs.check-version.outputs.is_prerelease == 'true'
runs-on: ubuntu-latest
permissions: write-all
steps:
Expand Down Expand Up @@ -70,7 +70,11 @@ jobs:
run: |
# Build for multiple platforms
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o alertmanager-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release-action-plugins-actions_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,22 @@ jobs:
run: |
# Build versioned binaries
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o actions_check-v${{ steps.read_version.outputs.version }}-${os}-${arch}
done
done

# Build latest binaries
for os in darwin linux; do
for arch in amd64 arm64 386 arm ppc64le s390x; do
for arch in amd64 arm64 arm ppc64le s390x; do
# Skip darwin/386 as it's unsupported
if [ "$os" = "darwin" ] && [ "$arch" = "386" ]; then
continue
fi
GOOS=${os} GOARCH=${arch} go build -o actions_check-latest-${os}-${arch}
done
done
Expand Down
Loading