Skip to content

Commit db36319

Browse files
authored
fixes (#62)
1 parent bd19b8b commit db36319

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,20 @@ jobs:
3030
run: |
3131
artifact_name="Firebase.zip"
3232
33-
echo "Downloading artifact from $REPO version $VERSION"
33+
echo "Getting release ID for $REPO version $VERSION"
3434
3535
# Get the release ID for the specific version
3636
release_id=$(gh api repos/$REPO/releases/tags/$VERSION --jq '.id')
3737
38+
echo "Release ID: $release_id"
39+
echo "Getting release notes for $REPO version $VERSION"
40+
3841
# Get release notes
3942
release_notes=$(gh release view $release_id --repo $REPO --json body | jq -r '.body')
4043
echo "::set-output name=release_notes::${release_notes}"
4144
45+
echo "Downloading artifact from $REPO version $VERSION"
46+
4247
# Download the release artifact for that release ID
4348
gh release download $release_id --repo $REPO --pattern $artifact_name --dir ./
4449
env:

0 commit comments

Comments
 (0)