-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split release process (PoC) (#11991)
* Split release process (PoC) This PR adds the necessary infrastructure for the new split release process. Releases are still triggered via the LATEST file but you can choose between the old and the new release process by adding SPLIT-RELEASE at the end of the line. As a first step this publishes all artifacts we currently publish to Github releases to our GCP bucket. changelog_begin changelog_end * drop report-start changelog_begin changelog_end * fix gcp bucket changelog_begin changelog_end * review feedback changelog_begin changelog_end * Update azure-pipelines.yml Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com> * SPLIT-RELEASE ->SPLIT_RELEASE changelog_begin changelog_end Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>
- Loading branch information
1 parent
f228f95
commit 5a019ea
Showing
4 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (c) 2021 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
set -euo pipefail | ||
|
||
RELEASE_TAG=$1 | ||
SOURCE_DIR=$2 | ||
OUTPUT_DIR=$3 | ||
|
||
mkdir -p $OUTPUT_DIR/github | ||
|
||
for file in $SOURCE_DIR/github/*; do | ||
# Copy as a placeholder for potential tweaks we might want to do here. | ||
cp $file $OUTPUT_DIR/github | ||
done |
This file contains 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
This file contains 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