Bump version to 1.4.4 and update Fedora workflows #748
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and upload development artifacts | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| version: | |
| name: Describe | |
| uses: ./.github/workflows/build-umu-version.yml | |
| fedora43-build: | |
| name: Fedora 43 Build | |
| uses: ./.github/workflows/build-umu-fedora-43.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| shasum: ${{ github.sha }} | |
| fedora44-build: | |
| name: Fedora 44 Build | |
| uses: ./.github/workflows/build-umu-fedora-44.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| shasum: ${{ github.sha }} | |
| debian12-build: | |
| name: Debian 12 Build | |
| uses: ./.github/workflows/build-umu-debian-12.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| debian13-build: | |
| name: Debian 13 Build | |
| uses: ./.github/workflows/build-umu-debian-13.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| ubuntu-noble-build: | |
| name: Ubuntu 24.04 Build | |
| uses: ./.github/workflows/build-umu-ubuntu-noble.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| ubuntu-resolute-build: | |
| name: Ubuntu 26.04 Build | |
| uses: ./.github/workflows/build-umu-ubuntu-resolute.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| zipapp-build: | |
| name: Zipapp Build | |
| uses: ./.github/workflows/build-umu-zipapp.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} |