release-check.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. name: Release Check
  2. on:
  3. push:
  4. branches:
  5. - 'release/**'
  6. - 'hotfix/**'
  7. defaults:
  8. run:
  9. shell: bash
  10. jobs:
  11. release-check-precondition:
  12. name: Validate commits pushed to release/hotfix branch to fulfill release requirements
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v3
  16. - id: validate-pom-version
  17. name: Validate POM version
  18. run: |
  19. if [[ $GITHUB_REF =~ refs/heads/(hotfix|release)/[0-9]+\.[0-9]+\.[0-9]+.* ]]; then
  20. SEM_VER_STR=${GITHUB_REF##*/}
  21. else
  22. echo "Failed to parse version"
  23. exit 1
  24. fi
  25. if [[ ${SEM_VER_STR} == `mvn help:evaluate -Dexpression=project.version -q -DforceStdout` ]]; then
  26. echo "semVerStr=${SEM_VER_STR}" >> $GITHUB_OUTPUT
  27. else
  28. echo "Version not set in POM"
  29. exit 1
  30. fi
  31. - name: Validate release in org.cryptomator.Cryptomator.metainfo.xml file
  32. run: |
  33. if ! grep -q "<release date=\".*\" version=\"${{ steps.validate-pom-version.outputs.semVerStr }}\"/>" dist/linux/common/org.cryptomator.Cryptomator.metainfo.xml; then
  34. echo "Release not set in dist/linux/common/org.cryptomator.Cryptomator.metainfo.xml"
  35. exit 1
  36. fi