mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 01:14:22 +00:00
22 lines
408 B
Bash
Executable File
22 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2019 The Kubernetes Authors.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -e
|
|
|
|
# fetch upstream once
|
|
git fetch upstream
|
|
export FETCH="false"
|
|
|
|
# release modules without binaries
|
|
for module in "kyaml api cmd/config cmd/kubectl"
|
|
do
|
|
releasing/releasemodule.sh $module
|
|
done
|
|
|
|
# release modules with binaries
|
|
for binary in "kustomize"
|
|
do
|
|
BINARY=true releasing/releasemodule.sh $binary
|
|
done
|