debian.yml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. name: Build Debian Package
  2. on:
  3. release:
  4. types: [published]
  5. workflow_dispatch:
  6. inputs:
  7. dput:
  8. description: 'Upload to PPA'
  9. required: true
  10. default: false
  11. type: boolean
  12. env:
  13. JAVA_VERSION: 17
  14. jobs:
  15. build:
  16. name: Build Debian Package
  17. runs-on: ubuntu-18.04
  18. steps:
  19. - uses: actions/checkout@v2
  20. with:
  21. fetch-depth: 0
  22. - name: Install build tools
  23. run: |
  24. sudo apt-get update
  25. sudo apt-get install debhelper devscripts dput
  26. - name: Setup Java
  27. uses: actions/setup-java@v2
  28. with:
  29. distribution: 'temurin'
  30. java-version: ${{ env.JAVA_VERSION }}
  31. cache: 'maven'
  32. - id: versions
  33. name: Apply version information
  34. run: |
  35. if [[ $GITHUB_REF =~ refs/tags/[0-9]+\.[0-9]+\.[0-9]+.* ]]; then
  36. SEM_VER_STR=${GITHUB_REF##*/}
  37. mvn versions:set -DnewVersion=${SEM_VER_STR}
  38. else
  39. SEM_VER_STR=`mvn help:evaluate -Dexpression=project.version -q -DforceStdout`
  40. fi
  41. SEM_VER_NUM=`echo ${SEM_VER_STR} | sed -E 's/([0-9]+\.[0-9]+\.[0-9]+).*/\1/'`
  42. REVCOUNT=`git rev-list --count HEAD`
  43. echo "::set-output name=semVerStr::${SEM_VER_STR}"
  44. echo "::set-output name=semVerNum::${SEM_VER_NUM}"
  45. echo "::set-output name=revNum::${REVCOUNT}"
  46. echo "::set-output name=ppaVerStr::${SEM_VER_STR/-/\~}-${REVCOUNT}"
  47. - name: Validate Version
  48. uses: skymatic/semver-validation-action@v1
  49. with:
  50. version: ${{ steps.versions.outputs.semVerStr }}
  51. - name: Run maven
  52. run: mvn -B clean package -Pdependency-check,linux -DskipTests
  53. - name: Create orig.tar.gz with common/ libs/ mods/
  54. run: |
  55. mkdir pkgdir
  56. cp -r target/libs pkgdir
  57. cp -r target/mods pkgdir
  58. cp -r dist/linux/common/ pkgdir
  59. cp target/cryptomator-*.jar pkgdir/mods
  60. tar -cJf cryptomator_${{ steps.versions.outputs.ppaVerStr }}.orig.tar.xz -C pkgdir .
  61. - name: Patch and rename pkgdir
  62. run: |
  63. cp -r dist/linux/debian/ pkgdir
  64. export RFC2822_TIMESTAMP=`date --rfc-2822`
  65. envsubst '${SEMVER_STR} ${VERSION_NUM} ${REVISION_NUM}' < dist/linux/debian/rules > pkgdir/debian/rules
  66. envsubst '${PPA_VERSION} ${RFC2822_TIMESTAMP}' < dist/linux/debian/changelog > pkgdir/debian/changelog
  67. find . -name "*.jar" >> pkgdir/debian/source/include-binaries
  68. mv pkgdir cryptomator_${{ steps.versions.outputs.ppaVerStr }}
  69. env:
  70. SEMVER_STR: ${{ steps.versions.outputs.semVerStr }}
  71. VERSION_NUM: ${{ steps.versions.outputs.semVerNum }}
  72. REVISION_NUM: ${{ steps.versions.outputs.revNum }}
  73. PPA_VERSION: ${{ steps.versions.outputs.ppaVerStr }}-0ppa1
  74. - name: Prepare GPG-Agent for signing with key 615D449FE6E6A235
  75. run: |
  76. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  77. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --dry-run --sign README.md
  78. env:
  79. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  80. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  81. - name: debuild
  82. run: |
  83. debuild -S -sa -d
  84. debuild -b -sa -d
  85. env:
  86. DEBSIGN_PROGRAM: gpg --batch --pinentry-mode loopback
  87. DEBSIGN_KEYID: 615D449FE6E6A235
  88. working-directory: cryptomator_${{ steps.versions.outputs.ppaVerStr }}
  89. - name: Create detached GPG signatures
  90. run: |
  91. gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a cryptomator_*_amd64.deb
  92. - name: Upload artifacts
  93. uses: actions/upload-artifact@v3
  94. with:
  95. name: linux-deb-package
  96. path: |
  97. cryptomator_*.dsc
  98. cryptomator_*.orig.tar.xz
  99. cryptomator_*.debian.tar.xz
  100. cryptomator_*_source.buildinfo
  101. cryptomator_*_source.changes
  102. cryptomator_*_amd64.deb
  103. cryptomator_*.asc
  104. - name: Publish on PPA
  105. if: startsWith(github.ref, 'refs/tags/') || github.event.inputs.dput == 'true'
  106. run: dput ppa:sebastian-stenzel/cryptomator-beta cryptomator_*_source.changes
  107. - name: Publish Debian package on GitHub Releases
  108. if: startsWith(github.ref, 'refs/tags/')
  109. uses: softprops/action-gh-release@v1
  110. with:
  111. fail_on_unmatched_files: true
  112. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  113. files: |
  114. cryptomator_*_amd64.deb
  115. cryptomator_*.asc