diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8d56072..508ff50 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -45,30 +45,12 @@ jobs: retention-days: 7 path: /tmp/ghostty-build/Ghostty-*-${{ matrix.arch }}.AppImage* - outputs: - arch: ${{ matrix.arch }} - - release_appimage: - permissions: - actions: read - security-events: write - contents: write - name: Upload binaries to release (${{ matrix.arch }}) - runs-on: ubuntu-latest - if: ${{ github.event_name == 'release' }} - needs: "build_appimage" - strategy: - matrix: - arch: [aarch64, x86_64] - steps: - - uses: actions/download-artifact@v4 - with: - name: ghostty-appimage-${{ needs.build_appimage.outputs.arch }} - - name: Upload binaries to release + if: ${{ github.event_name == 'release' }} uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ./Ghostty-*-${{ matrix.arch }}.AppImage* + file: /tmp/ghostty-build/Ghostty-*-${{ matrix.arch }}.AppImage* tag: ${{ github.ref }} + overwrite: true file_glob: true