Package asl3-menu(develop) for bookworm/amd64, Publish to development #3
This file contains 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: make_and_publish_pkgs | |
run-name: Package ${{ github.event.repository.name }}(${{ github.ref_name }}) for ${{ inputs.os }}/${{ inputs.arch }}, Publish to ${{ inputs.deployment-environment }} | |
on: | |
workflow_dispatch: | |
inputs: | |
arch: | |
description: 'Platform Architecture' | |
type: choice | |
options: | |
- amd64 | |
os: | |
description: 'Debian Release Version' | |
type: choice | |
options: | |
- bookworm | |
- bullseye | |
gh-rel: | |
description: 'GitHub Release Tag (for debs)' | |
type: string | |
deployment-environment: | |
description: 'Aptly Repository Stream' | |
type: choice | |
options: | |
- development | |
- testing | |
- production | |
commit-versioning: | |
description: 'Commit Versioning' | |
type: choice | |
options: | |
- default | |
- yes | |
- no | |
jobs: | |
make-packages: | |
uses: AllStarLink/asl3-menu/.github/workflows/ephemeral_ec2_run-this.yml@develop | |
with: | |
run-this: ./builder/dockerbuild.sh -a ${{ inputs.arch }} -o ${{ inputs.os }} --gh-rel ${{ inputs.gh-rel }} | |
arch: ${{ inputs.arch == 'armhf' && 'arm64' || inputs.arch == 'aarch64' && 'arm64' || inputs.arch == 'amd64' && 'x86_64' || inputs.arch == 'riscv64' && 'x86_64' || inputs.arch }} | |
artifact-path: '_debs/*' | |
secrets: inherit | |
# publish-packages: | |
# uses: AllStarLink/asl3-asterisk/.github/workflows/publish_artifacts_to_aptly.yml@develop | |
# with: | |
# repo-name: asl_builds-${{inputs.os}}${{ inputs.deployment-environment == 'production' && '' || inputs.deployment-environment == 'testing' && '-testing' || inputs.deployment-environment == 'development' && '-devel' || null }} | |
# secrets: inherit | |
# needs: make-packages |