Merge pull request #25 from nginxinc/areste-windowstarball #12
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: Build and Release | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.4' | |
- name: Build | |
run: | | |
BUILD=$(git log --format='%H' -n 1) | |
VERSION="dev" | |
OSES="linux darwin windows" | |
ARCHS="amd64 arm64" | |
IFS=" " | |
for OS in $OSES; do | |
for ARCH in $ARCHS; do | |
echo "OS: ${OS} and ARCH: ${ARCH}" | |
GOOS=${OS} GOARCH=${ARCH} go build -ldflags "-w -s -X github.com/nginxinc/nginx-k8s-supportpkg/pkg/version.Build=$BUILD\ | |
-X github.com/nginxinc/nginx-k8s-supportpkg/pkg/version.Version=$VERSION"\ | |
-o release/kubectl-nginx_supportpkg_${VERSION}_${OS}_${ARCH}/kubectl-nginx_supportpkg | |
cp LICENSE release/kubectl-nginx_supportpkg_${VERSION}_${OS}_${ARCH}/ | |
tar czvf release/kubectl-nginx_supportpkg_${VERSION}_${OS}_${ARCH}.tar.gz -C release/kubectl-nginx_supportpkg_${VERSION}_${OS}_${ARCH}/ . | |
done; done | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-artifacts | |
path: release/**/*.gz |