Bump version to 0.3.32 #59
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: 'Tag to build and push' | |
| required: false | |
| default: 'latest' | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - platform: linux/amd64 | |
| runner: ubuntu-latest | |
| arch: amd64 | |
| - platform: linux/arm64 | |
| runner: ubuntu-24.04-arm | |
| arch: arm64 | |
| runs-on: ${{ matrix.runner }} | |
| permissions: | |
| contents: read | |
| packages: write | |
| outputs: | |
| digest-amd64: ${{ steps.build.outputs.digest }} | |
| digest-arm64: ${{ steps.build.outputs.digest }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
| - name: Build and push by digest | |
| id: build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./perry | |
| platforms: ${{ matrix.platform }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| outputs: type=image,name=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true | |
| cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache-${{ matrix.arch }} | |
| cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache-${{ matrix.arch }},mode=max | |
| - name: Export digest | |
| run: | | |
| mkdir -p /tmp/digests | |
| digest="${{ steps.build.outputs.digest }}" | |
| touch "/tmp/digests/${digest#sha256:}" | |
| - name: Upload digest | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: digests-${{ matrix.arch }} | |
| path: /tmp/digests/* | |
| if-no-files-found: error | |
| retention-days: 1 | |
| merge: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - name: Download digests | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: /tmp/digests | |
| pattern: digests-* | |
| merge-multiple: true | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
| tags: | | |
| type=semver,pattern={{version}} | |
| type=semver,pattern={{major}}.{{minor}} | |
| type=semver,pattern={{major}} | |
| type=raw,value=latest,enable={{is_default_branch}} | |
| type=raw,value=${{ github.event.inputs.tag }},enable=${{ github.event_name == 'workflow_dispatch' }} | |
| - name: Create manifest list and push | |
| working-directory: /tmp/digests | |
| run: | | |
| docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
| $(printf '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@sha256:%s ' *) | |
| - name: Inspect image | |
| run: | | |
| docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta.outputs.version }} | |
| binaries: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - target: bun-linux-x64 | |
| name: linux-x64 | |
| archive: tar.gz | |
| - target: bun-linux-arm64 | |
| name: linux-arm64 | |
| archive: tar.gz | |
| - target: bun-darwin-x64 | |
| name: darwin-x64 | |
| archive: tar.gz | |
| - target: bun-darwin-arm64 | |
| name: darwin-arm64 | |
| archive: tar.gz | |
| - target: bun-windows-x64 | |
| name: windows-x64 | |
| archive: zip | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: | | |
| bun install | |
| cd web && bun install | |
| - name: Set version from tag | |
| id: version | |
| run: | | |
| VERSION=${GITHUB_REF#refs/tags/v} | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| - name: Build TypeScript and Web UI | |
| run: | | |
| bun run build:ts | |
| bun run build:web | |
| - name: Compile binary | |
| run: | | |
| mkdir -p dist-binaries | |
| BINARY_NAME="perry" | |
| if [[ "${{ matrix.name }}" == windows-* ]]; then | |
| BINARY_NAME="perry.exe" | |
| fi | |
| bun build ./src/index.ts --compile --target=${{ matrix.target }} --minify --outfile=dist-binaries/$BINARY_NAME | |
| - name: Create archive | |
| run: | | |
| VERSION=${{ steps.version.outputs.version }} | |
| ARCHIVE_DIR="perry-${VERSION}-${{ matrix.name }}" | |
| mkdir -p "$ARCHIVE_DIR" | |
| if [[ "${{ matrix.name }}" == windows-* ]]; then | |
| cp dist-binaries/perry.exe "$ARCHIVE_DIR/" | |
| else | |
| cp dist-binaries/perry "$ARCHIVE_DIR/" | |
| fi | |
| cp -r dist/agent/web "$ARCHIVE_DIR/" | |
| if [[ "${{ matrix.archive }}" == "tar.gz" ]]; then | |
| tar -czvf "dist-binaries/perry-${VERSION}-${{ matrix.name }}.tar.gz" "$ARCHIVE_DIR" | |
| else | |
| zip -r "dist-binaries/perry-${VERSION}-${{ matrix.name }}.zip" "$ARCHIVE_DIR" | |
| fi | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: binary-${{ matrix.name }} | |
| path: dist-binaries/perry-*.* | |
| retention-days: 1 | |
| release: | |
| needs: binaries | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Download all artifacts | |
| uses: actions/download-artifact@v4 | |
| with: | |
| path: dist-binaries | |
| pattern: binary-* | |
| merge-multiple: true | |
| - name: Generate checksums | |
| run: | | |
| cd dist-binaries | |
| sha256sum perry-*.tar.gz perry-*.zip > checksums.txt | |
| cat checksums.txt | |
| - name: Upload to GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| dist-binaries/*.tar.gz | |
| dist-binaries/*.zip | |
| dist-binaries/checksums.txt | |
| fail_on_unmatched_files: true | |
| generate_release_notes: true | |
| notify: | |
| needs: [merge, release] | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Notify Discord | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| VERSION=${GITHUB_REF#refs/tags/v} | |
| # Fetch release notes from GitHub | |
| RELEASE_BODY=$(gh release view ${{ github.ref_name }} --json body -q .body 2>/dev/null || echo "") | |
| # Fallback if empty | |
| if [ -z "$RELEASE_BODY" ]; then | |
| RELEASE_BODY="New release available. See the release page for details." | |
| fi | |
| # Truncate if too long (Discord embed limit) | |
| if [ ${#RELEASE_BODY} -gt 1500 ]; then | |
| RELEASE_BODY="${RELEASE_BODY:0:1497}..." | |
| fi | |
| # Build and send Discord message | |
| jq -n \ | |
| --arg title "Perry ${{ github.ref_name }}" \ | |
| --arg url "https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }}" \ | |
| --arg desc "$RELEASE_BODY" \ | |
| '{embeds:[{title:$title,description:$desc,url:$url,color:5025616}]}' | \ | |
| curl -sf -X POST "${{ secrets.DISCORD_WEBHOOK }}" \ | |
| -H "Content-Type: application/json" \ | |
| -d @- |