feat: add support for https_proxy environment variable (#415) #696
Workflow file for this run
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 | |
| fedora42-build: | |
| name: Fedora 42 Build | |
| uses: ./.github/workflows/build-umu-fedora-42.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| shasum: ${{ github.sha }} | |
| 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 }} | |
| 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 }} | |
| zipapp-build: | |
| name: Zipapp Build | |
| uses: ./.github/workflows/build-umu-zipapp.yml | |
| needs: version | |
| with: | |
| version: ${{ needs.version.outputs.version }} |