Skip to content

Commit

Permalink
ci(github): 👷 stop building fyne packages
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuar committed Jul 7, 2024
1 parent 2031c88 commit 0cf9f16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
shell: bash
run: |
shopt -s nullglob
echo Need to sign dist/pkg/*.{rpm,deb,zst} fyne-cross/dist/linux-*/*.tar.xz
for artifact in dist/pkg/*.{rpm,deb,zst} fyne-cross/dist/linux-*/*.tar.xz; do
echo Need to sign dist/pkg/*.{rpm,deb,zst} # fyne-cross/dist/linux-*/*.tar.xz
for artifact in dist/pkg/*.{rpm,deb,zst}; do
echo Signing ${artifact}
cosign --verbose=true sign-blob --yes --key cosign.key --output-signature=${artifact}.sig ${artifact}
done
Expand All @@ -107,13 +107,13 @@ jobs:
name: build-${{ env.PLATFORM_PAIR }}-${{ github.sha }}
path: |
dist/pkg
fyne-cross/dist/linux-*
# fyne-cross/dist/linux-*
- name: Upload release artifacts
id: upload_release
if: ${{ needs.check_release.outputs.release_created }}
run: |
gh release upload ${{ needs.check_release.outputs.release_tag }} dist/pkg/*.{rpm,deb,zst,sig}
gh release upload ${{ needs.check_release.outputs.release_tag }} fyne-cross/dist/linux-*/*.tar.xz{,.sig}
# gh release upload ${{ needs.check_release.outputs.release_tag }} fyne-cross/dist/linux-*/*.tar.xz{,.sig}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion build/magefiles/package.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (p Package) CI() error {
}

mg.Deps(p.Nfpm)
mg.Deps(p.FyneCross)
// mg.Deps(p.FyneCross)

return nil
}

0 comments on commit 0cf9f16

Please sign in to comment.