File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -30,15 +30,20 @@ jobs:
30
30
run : |
31
31
artifact_name="Firebase.zip"
32
32
33
- echo "Downloading artifact from $REPO version $VERSION"
33
+ echo "Getting release ID for $REPO version $VERSION"
34
34
35
35
# Get the release ID for the specific version
36
36
release_id=$(gh api repos/$REPO/releases/tags/$VERSION --jq '.id')
37
37
38
+ echo "Release ID: $release_id"
39
+ echo "Getting release notes for $REPO version $VERSION"
40
+
38
41
# Get release notes
39
42
release_notes=$(gh release view $release_id --repo $REPO --json body | jq -r '.body')
40
43
echo "::set-output name=release_notes::${release_notes}"
41
44
45
+ echo "Downloading artifact from $REPO version $VERSION"
46
+
42
47
# Download the release artifact for that release ID
43
48
gh release download $release_id --repo $REPO --pattern $artifact_name --dir ./
44
49
env :
You can’t perform that action at this time.
0 commit comments