-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: publish PackageSet on Fluvio Publish (#3694)
* feat: publish PackageSet on Fluvio Publish * feat: use makefile instead * fix: bump version along with publish pkgset * Update actions/publish-pkgset.sh Co-authored-by: T.J. Telan <[email protected]> * fix: set static value on very top --------- Co-authored-by: T.J. Telan <[email protected]>
- Loading branch information
1 parent
03806c2
commit 86fbb94
Showing
3 changed files
with
47 additions
and
1 deletion.
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,33 @@ | ||
#!/usr/bin/env bash | ||
set -u | ||
|
||
curl -v -X "POST" "https://hub.infinyon.cloud/hub/v1/fvm/pkgset" \ | ||
-H "Authorization: $BPKG_TOKEN" \ | ||
-H 'Content-Type: application/json; charset=utf-8' \ | ||
--data-binary @- << EOF | ||
{ | ||
"artifacts": [ | ||
{ | ||
"name": "fluvio", | ||
"version": "$FLUVIO_VERSION" | ||
}, | ||
{ | ||
"name": "fluvio-cloud", | ||
"version": "$FLUVIO_CLOUD_VERSION" | ||
}, | ||
{ | ||
"name": "fluvio-run", | ||
"version": "$FLUVIO_VERSION" | ||
}, | ||
{ | ||
"name": "cdk", | ||
"version": "$FLUVIO_VERSION" | ||
}, | ||
{ | ||
"name": "smdk", | ||
"version": "$FLUVIO_VERSION" | ||
} | ||
], | ||
"pkgset": "$PKGSET_NAME" | ||
} | ||
EOF |
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