File tree Expand file tree Collapse file tree
actions/deploy-cuttlefish-cvdremote-debian-package Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : ' Deploy debian package cuttlefish-cvdremote'
22inputs :
3+ deploy-channel :
4+ required : true
35 path :
46 required : true
57runs :
1113 version : ' >= 363.0.0'
1214 - name : Deploy deb package into Artifact Registry
1315 run : |
16+ if [[ ${{ inputs.deploy-channel }} == "stable" ]]; then
17+ REPO=android-cuttlefish
18+ else
19+ REPO=android-cuttlefish-${{ inputs.deploy-channel }}
20+ fi
21+
1422 gcloud --project=android-cuttlefish-artifacts \
1523 artifacts apt upload \
16- android-cuttlefish-nightly \
24+ ${REPO} \
1725 --location=us \
1826 --source=${{ inputs.path }}
1927 shell : bash
Original file line number Diff line number Diff line change 7272 - name : Deploy debian package cuttlefish-cvdremote
7373 uses : ./.github/actions/deploy-cuttlefish-cvdremote-debian-package
7474 with :
75+ deploy-channel : ${{ inputs.deploy-channel }}
7576 path : ${{ env.path }}
7677
7778 deploy-cuttlefish-cvdremote-arm64-debian-package :
9697 - name : Deploy debian package cuttlefish-cvdremote
9798 uses : ./.github/actions/deploy-cuttlefish-cvdremote-debian-package
9899 with :
100+ deploy-channel : ${{ inputs.deploy-channel }}
99101 path : ${{ env.path }}
100102
101103 deploy-cuttlefish-cloud-orchestrator-amd64-docker-image :
You can’t perform that action at this time.
0 commit comments