flathub.yml 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. name: Create PR for flathub
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. inputs:
  7. tag:
  8. description: 'Release tag'
  9. required: true
  10. jobs:
  11. get-version:
  12. uses: ./.github/workflows/get-version.yml
  13. with:
  14. version: ${{ inputs.tag }}
  15. tarball:
  16. name: Determines tarball url and compute checksum
  17. runs-on: ubuntu-latest
  18. needs: [get-version]
  19. if: github.event_name == 'workflow_dispatch' || needs.get-version.outputs.versionType == 'stable'
  20. outputs:
  21. url: ${{ steps.url.outputs.url}}
  22. sha512: ${{ steps.sha512.outputs.sha512}}
  23. steps:
  24. - name: Determine tarball url
  25. id: url
  26. run: |
  27. URL="";
  28. if [[ -n "${{ inputs.tag }}" ]]; then
  29. URL="https://github.com/cryptomator/cryptomator/archive/refs/tags/${{ inputs.tag }}.tar.gz"
  30. else
  31. URL="https://github.com/cryptomator/cryptomator/archive/refs/tags/${{ github.event.release.tag_name }}.tar.gz"
  32. fi
  33. echo "url=${URL}" >> "$GITHUB_OUTPUT"
  34. - name: Download source tarball and compute checksum
  35. id: sha512
  36. run: |
  37. curl --silent --fail-with-body -L -H "Accept: application/vnd.github+json" ${{ steps.url.outputs.url }} --output cryptomator.tar.gz
  38. TARBALL_SHA512=$(sha512sum cryptomator.tar.gz | cut -d ' ' -f1)
  39. echo "sha512=${TARBALL_SHA512}" >> "$GITHUB_OUTPUT"
  40. flathub:
  41. name: Create PR for flathub
  42. runs-on: ubuntu-latest
  43. needs: [tarball, get-version]
  44. env:
  45. FLATHUB_PR_URL: tbd
  46. steps:
  47. - uses: actions/checkout@v4
  48. with:
  49. repository: 'flathub/org.cryptomator.Cryptomator'
  50. - name: Checkout release branch
  51. run: |
  52. git checkout -b release/${{ needs.get-version.outputs.semVerStr }}
  53. - name: Download yq
  54. run: wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O yq && chmod +x yq
  55. - name: Update build file
  56. run: |
  57. ./yq -i eval '(.modules[] | select(.name == "cryptomator") | .build-options.env.VERSION) = "${{ needs.get-version.outputs.semVerStr }}"' org.cryptomator.Cryptomator.yaml
  58. ./yq -i eval '(.modules[] | select(.name == "cryptomator") | .sources[] | select(.type == "archive" and .url = "https://github.com/cryptomator/cryptomator/archive*") | .url) = "${{ needs.tarball.outputs.url }}"' org.cryptomator.Cryptomator.yaml
  59. ./yq -i eval '(.modules[] | select(.name == "cryptomator") | .sources[] | select(.type == "archive" and .url = "https://github.com/cryptomator/cryptomator/archive*") | .sha512) = "${{ needs.tarball.outputs.sha512 }}"' org.cryptomator.Cryptomator.yaml
  60. - name: Commit and push
  61. run: |
  62. git stage .
  63. git commit -m "Prepare release ${{needs.get-version.outputs.semVerStr}}"
  64. git push
  65. - name: Create pull request
  66. run: |
  67. PR_URL=$(gh pr create --head --title "Release ${{ needs.get-version.outputs.semVerStr }}" --body "> [!IMPORTANT]\n> Todos:\n> [ ] Update maven dependencies\n> [ ] Check for JDK update\n> [ ] Check for JFX update")
  68. echo "FLATHUB_PR_URL=$PR_URL" >> "$GITHUB_ENV"
  69. env:
  70. GH_TOKEN: ${{ secrets.CRYPTOBOT_WINGET_TOKEN }}
  71. - name: Slack Notification
  72. uses: rtCamp/action-slack-notify@v2
  73. if: github.event_name == 'release'
  74. env:
  75. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
  76. SLACK_USERNAME: 'Cryptobot'
  77. SLACK_ICON: false
  78. SLACK_ICON_EMOJI: ':bot:'
  79. SLACK_CHANNEL: 'cryptomator-desktop'
  80. SLACK_TITLE: "Flathub release PR created for ${{ github.event.repository.name }} ${{ github.event.release.tag_name }} created."
  81. SLACK_MESSAGE: "See <${{ env.FLATHUB_PR_URL }}|PR> on how to proceed.>."
  82. SLACK_FOOTER: false
  83. MSG_MINIMAL: true