Files
kustomize/releasing/releaseallmodules.sh
2019-12-16 13:05:17 -08:00

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