You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/cloudpod_release.yml
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -37,14 +37,18 @@ jobs:
37
37
name: cloudpod
38
38
- name: Display structure of downloaded files
39
39
run: ls -R
40
-
- name: Prepare Release.txt
40
+
- name: Prepare Release Notes
41
41
run: |
42
-
echo "Cloud Pod of the Sample created with LocalStack Version ${{ inputs.release-tag || 'latest'}}." > Release.txt
43
-
echo " * Please use the 'release-pod-{database}.zip' you need for your configuration." >> Release.txt
44
-
echo " * By default LocalStack uses the engine 'mariadb', so you need 'release-pod-mariadb.zip' " >> Release.txt
45
-
echo " * Click here to inject the 'mariadb' pod into your running LocalStack instance: [](https://app.localstack.cloud/launchpad?url=https://github.com/$GITHUB_REPOSITORY/releases/download/${{ inputs.release-tag || 'latest'}}/release-pod-mariadb.zip)" >> Release.txt
46
-
echo " * If you start LocalStack with 'RDS_MYSQL_DOCKER=1', please use the 'mysql' pod ('release-pod-mysql.zip')" >> Release.txt
47
-
echo " * Click here to inject the 'mysql' pod into your running LocalStack instance: [](https://app.localstack.cloud/launchpad?url=https://github.com/$GITHUB_REPOSITORY/releases/download/${{ inputs.release-tag || 'latest'}}/release-pod-mysql.zip)" >> Release.txt
42
+
echo "This release includes the Cloud Pod of the sample created with LocalStack Version `${{ inputs.release-tag || 'latest'}}`." > Release.txt
43
+
echo "Please use the `release-pod-{database}.zip` you need for your configuration." >> Release.txt
44
+
echo "### MariaDB" >> Release.txt
45
+
echo "By default LocalStack uses the engine `mariadb`, so you need `release-pod-mariadb.zip`." >> Release.txt
46
+
echo "You can click the Launchpad to inject the pod into your running LocalStack instance:" >> Release.txt
0 commit comments