forked from digital-asset/daml-dit-integration-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reconfigure to include the beginnings of a script that will generate …
…a large number of GH releases.
- Loading branch information
1 parent
1ba9dca
commit d84882f
Showing
3 changed files
with
21 additions
and
109 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## Copyright (c) 2021, Digital Asset (Switzerland) GmbH and/or its affiliates. | ||
## SPDX-License-Identifier: Apache-2.0 | ||
|
||
catalog: | ||
name: dabl-volume-test | ||
group_id: com.digitalasset | ||
version: 0.0.XYZZY | ||
short_description: Volume Test Project | ||
description: Volume Test Project | ||
author: Digital Asset (Switzerland) GmbH | ||
license: Apache-2.0 | ||
tags: [ integration ] | ||
icon_file: integration-icon.svg | ||
source_url: https://github.com/mschaef-da/daml-dit-integration-core-voltest | ||
integration_types: [] |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
#!/bin/sh | ||
|
||
for ii in $(seq 0 10); | ||
do | ||
cat dabl-meta.template.yaml | sed s/XYZZY/${ii}/ | ||
done |