ci: enhance GitHub release workflow with token handling and file upload improvements

This commit is contained in:
Manuel Weiser 2025-02-21 21:13:36 +01:00
parent bb166aa29f
commit d71e3d8184
2 changed files with 47 additions and 28 deletions

View File

@ -2,12 +2,19 @@ name: GitHub Release
on: on:
workflow_call: workflow_call:
secrets:
GITHUB_TOKEN:
description: 'GitHub token for release creation'
required: true
permissions:
contents: write
jobs: jobs:
create-release: create-release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
#permissions: permissions:
# contents: write contents: write
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -97,35 +104,40 @@ jobs:
- name: Create GitHub Release - name: Create GitHub Release
env: env:
GH_TOKEN: ${{ github.token }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
VERSION=${{ steps.get_version.outputs.VERSION }} VERSION=${{ steps.get_version.outputs.VERSION }}
# Create release with available files
cd .pio/build/esp32dev cd .pio/build/esp32dev
FILES_TO_UPLOAD=""
# Always add firmware # Create the release first
if [ -f "filaman_${VERSION}.bin" ]; then RELEASE_JSON=$(curl -L \
FILES_TO_UPLOAD="$FILES_TO_UPLOAD filaman_${VERSION}.bin" -X POST \
fi -H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
-H "X-GitHub-Api-Version: 2022-11-28" \
"https://api.github.com/repos/$GITHUB_REPOSITORY/releases" \
-d "{
\"tag_name\":\"v${VERSION}\",
\"name\":\"Release ${VERSION}\",
\"body\":\"${{ steps.changelog.outputs.CHANGES }}\",
\"draft\":false,
\"prerelease\":false
}")
# Add SPIFFS and full binary only if they exist # Extract the upload URL from the response
if [ -f "webpage_${VERSION}.bin" ]; then UPLOAD_URL=$(echo "$RELEASE_JSON" | jq -r .upload_url | sed 's/{?name,label}//')
FILES_TO_UPLOAD="$FILES_TO_UPLOAD webpage_${VERSION}.bin"
fi
if [ -f "filaman_full_${VERSION}.bin" ]; then # Upload the binary files
FILES_TO_UPLOAD="$FILES_TO_UPLOAD filaman_full_${VERSION}.bin" for file in filaman_${VERSION}.bin webpage_${VERSION}.bin filaman_full_${VERSION}.bin; do
fi if [ -f "$file" ]; then
echo "Uploading $file..."
# Create release with available files curl -L \
if [ -n "$FILES_TO_UPLOAD" ]; then -X POST \
gh release create "v${VERSION}" \ -H "Accept: application/vnd.github+json" \
--title "Release ${VERSION}" \ -H "Authorization: Bearer $GITHUB_TOKEN" \
--notes "${{ steps.changelog.outputs.CHANGES }}" \ -H "X-GitHub-Api-Version: 2022-11-28" \
$FILES_TO_UPLOAD -H "Content-Type: application/octet-stream" \
else "${UPLOAD_URL}?name=${file}" \
echo "Error: No files found to upload" --data-binary "@${file}"
exit 1 fi
fi done

View File

@ -5,6 +5,9 @@ on:
tags: tags:
- 'v*' - 'v*'
permissions:
contents: write
jobs: jobs:
detect-provider: detect-provider:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -23,8 +26,12 @@ jobs:
github-release: github-release:
needs: detect-provider needs: detect-provider
permissions:
contents: write
if: needs.detect-provider.outputs.provider == 'github' if: needs.detect-provider.outputs.provider == 'github'
uses: ./.github/workflows/github-release.yml uses: ./.github/workflows/github-release.yml
secrets:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
gitea-release: gitea-release:
needs: detect-provider needs: detect-provider