mirror of
https://github.com/containers/podman.git
synced 2025-10-19 04:03:23 +08:00
Merge pull request #4180 from cevich/update_download_links
Docs: Update links, add links to latest
This commit is contained in:
@ -9,8 +9,9 @@ popularized by Kubernetes. Libpod also contains the Pod Manager tool `(Podman)`
|
|||||||
* [Continuous Integration:](contrib/cirrus/README.md) [](https://cirrus-ci.com/github/containers/libpod/master)
|
* [Continuous Integration:](contrib/cirrus/README.md) [](https://cirrus-ci.com/github/containers/libpod/master)
|
||||||
* [GoDoc: ](https://godoc.org/github.com/containers/libpod/libpod)
|
* [GoDoc: ](https://godoc.org/github.com/containers/libpod/libpod)
|
||||||
* Automated continuous release downloads (including remote-client):
|
* Automated continuous release downloads (including remote-client):
|
||||||
* Master Branch: [https://storage.cloud.google.com/libpod-master-releases/](https://storage.cloud.google.com/libpod-master-releases/)
|
* [Latest remote client for Windows](https://storage.googleapis.com/libpod-master-releases/podman-remote-latest-master-windows-amd64.msi)
|
||||||
* Pull-requests: [https://storage.cloud.google.com/libpod-pr-releases/](https://storage.cloud.google.com/libpod-pr-releases/)
|
* [Latest remote client for MacOS](https://storage.googleapis.com/libpod-master-releases/podman-remote-latest-master-darwin-amd64.zip)
|
||||||
|
* [Latest Snap package](https://snapcraft.io/podman)
|
||||||
|
|
||||||
## Overview and scope
|
## Overview and scope
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ source /usr/local/bin/lib_entrypoint.sh
|
|||||||
req_env_var GCPJSON_FILEPATH GCPNAME GCPPROJECT BUCKET FROM_FILEPATH TO_FILENAME ALSO_FILENAME
|
req_env_var GCPJSON_FILEPATH GCPNAME GCPPROJECT BUCKET FROM_FILEPATH TO_FILENAME ALSO_FILENAME
|
||||||
|
|
||||||
[[ -r "$FROM_FILEPATH" ]] || \
|
[[ -r "$FROM_FILEPATH" ]] || \
|
||||||
die 2 ERROR Cannot read release archive file: "$REL_ARC_FILEPATH"
|
die 2 ERROR Cannot read release archive file: "$FROM_FILEPATH"
|
||||||
|
|
||||||
[[ -r "$GCPJSON_FILEPATH" ]] || \
|
[[ -r "$GCPJSON_FILEPATH" ]] || \
|
||||||
die 3 ERROR Cannot read GCP credentials file: "$GCPJSON_FILEPATH"
|
die 3 ERROR Cannot read GCP credentials file: "$GCPJSON_FILEPATH"
|
||||||
@ -17,9 +17,11 @@ gcloud_init "$GCPJSON_FILEPATH"
|
|||||||
|
|
||||||
echo "Uploading archive as $TO_FILENAME"
|
echo "Uploading archive as $TO_FILENAME"
|
||||||
gsutil cp "$FROM_FILEPATH" "gs://$BUCKET/$TO_FILENAME"
|
gsutil cp "$FROM_FILEPATH" "gs://$BUCKET/$TO_FILENAME"
|
||||||
gsutil cp "$FROM_FILEPATH" "gs://$BUCKET/$ALSO_FILENAME"
|
[[ -z "$ALSO_FILENAME" ]] || \
|
||||||
|
gsutil cp "$FROM_FILEPATH" "gs://$BUCKET/$ALSO_FILENAME"
|
||||||
|
|
||||||
echo "."
|
echo "."
|
||||||
echo "Release now available for download at:"
|
echo "Release now available for download at:"
|
||||||
echo " https://storage.cloud.google.com/$BUCKET/$TO_FILENAME"
|
echo " https://storage.googleapis.com/$BUCKET/$TO_FILENAME"
|
||||||
echo " https://storage.cloud.google.com/$BUCKET/$ALSO_FILENAME"
|
[[ -z "$ALSO_FILENAME" ]] || \
|
||||||
|
echo " https://storage.googleapis.com/$BUCKET/$ALSO_FILENAME"
|
||||||
|
Reference in New Issue
Block a user