Files
releases/build/github-release.sh
T
Patrick East fb5ff78c24 Migrate to GitHub actions
This includes some refactors to the build steps. High level items:

* Add variables for DOCKER_IMAGE, S3_RELEASE_BUCKET to allow for forks
  of OPA to re-use the GitHub actions with their own s3 buckets and
  docker orgs/image names.

* Unify the release build steps to use `make release` and the binaries
  being located under `_release/$(VERSION)`. All CI targets now rely
  on binaries being in that `RELEASE_DIR`, including image building
  steps The `make build` target is unaffected.

* Add a wrapper to allow the CI to run the various golang target
  stages separately, but sharing the same docker configuration.

* Conditionally specify `-it` for docker run commands based on whether
  A tty is available.

* Added scripts to automate drafting a release with binary assets vi
  the `hub` CLI.

* The release process triggered on a tag being pushed will now use the
  same binaries from `make release` for the docker images as well as
  the ones attached to the release (which are available under
  https://openpolicyagent.org/downloads/).

The actions themselves are split into 3 workflows:

pull-request.yaml:
  Triggers on pull requests. This will run all the normal tests/checks
  as before on Travis, however they are now split into separate jobs.
  In addition to what was done on Travis we will now have Codecov
  results included.

post-merge.yaml:
  Triggers after a change is pushed to master. This will run tests and
  build+publish the `edge` and `dev` artifacts to dockerhub and s3.

post-tag.yaml:
  Triggers after a tag has been pushed. Similar to post-merge.yaml it
  will run tests and build+publish release artifacts (for the tagged
  version). It will also create a draft release on GitHub with the
  same artifacts and notes from the CHANGELOG.md. If a release already
  exists it will be updated to include the assets, however the release
  notes will _not_ be added.

The RELEASE.md steps have been updated and include notes on the new
steps.

Signed-off-by: Patrick East <east.patrick@gmail.com>
2020-07-08 16:49:16 -07:00

55 lines
1.4 KiB
Bash
Executable File

#!/usr/bin/env bash
# Script to draft and edit OPA GitHub releases. Assumes execution environment is Github Action runner.
set -x
usage() {
echo "github-release.sh [--asset-dir=<path>] [--tag=<git tag>]"
echo " Default --asset-dir is $PWD and --tag $TAG_NAME "
}
TAG_NAME=${TAG_NAME}
ASSET_DIR=${PWD:-"./"}
for i in "$@"; do
case $i in
--asset-dir=*)
ASSET_DIR="${i#*=}"
shift
;;
--tag=*)
TAG_NAME="${i#*=}"
shift
;;
*)
usage
exit 1
;;
esac
done
# Collect a list of opa binaries (expect binaries in the form: opa_<platform>_<arch>[extension])
ASSETS=()
for asset in "${ASSET_DIR}"/opa_*_*; do
ASSETS+=("-a" "$asset")
done
# Gather the release notes from the CHANGELOG for the latest version
RELEASE_NOTES="release-notes.md"
# The hub CLI expects the first line to be the title
echo -e "${TAG_NAME}\n" > "${RELEASE_NOTES}"
# Fill in the description
./build/latest-release-notes.sh --output="${RELEASE_NOTES}"
# Update or create a release on github
if hub release show "${TAG_NAME}" > /dev/null; then
# Occurs when the tag is created via GitHub UI w/ a release
# Use -m "" to preserve the existing text.
hub release edit "${ASSETS[@]}" -m "" "${TAG_NAME}"
else
# Create a draft release
hub release create "${ASSETS[@]}" -F ${RELEASE_NOTES} --draft "${TAG_NAME}"
fi