openreview-py-updated #1658
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
# This workflow deploys any branch or tag to the staging environment. | |
name: Staging Deployment | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: The branch, tag, or commit hash to deploy | |
required: false | |
default: master | |
type: string | |
repository_dispatch: | |
types: [openreview-py-updated] | |
jobs: | |
deploy: | |
# Allow the job to fetch a GitHub ID token | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
env: | |
TAG: ${{ github.event.inputs.tag }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add SSH key | |
run: | | |
mkdir -p /home/runner/.ssh | |
echo "${{ secrets.GCLOUD_SSH_KEY }}" > /home/runner/.ssh/google_compute_engine | |
echo "${{ secrets.GCLOUD_SSH_KEY_PUB }}" > /home/runner/.ssh/google_compute_engine.pub | |
chmod 600 /home/runner/.ssh/google_compute_engine | |
chmod 600 /home/runner/.ssh/google_compute_engine.pub | |
- name: Authenticate with Google Cloud | |
id: auth | |
uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
create_credentials_file: true | |
cleanup_credentials: true | |
export_environment_variables: true | |
- name: Setup gcloud | |
uses: google-github-actions/setup-gcloud@v2 | |
- name: Run deploy script | |
run: | | |
instance_prefix='dev-instance' | |
instances=$(gcloud compute instances list | grep "$instance_prefix" | grep RUNNING | tr -s ' ' | cut -d' ' -f1,2) | |
instances_arr=(${instances// / }) | |
instance_names=() | |
zones=() | |
for i in ${!instances_arr[@]}; do | |
if echo "${instances_arr[$i]}" | grep -q "$instance_prefix"; then | |
instance_names+=(${instances_arr[$i]}) | |
else | |
zones+=(${instances_arr[$i]}) | |
fi | |
done | |
for i in ${!instance_names[@]}; do | |
echo Deploying to ${instance_names[$i]} | |
gcloud compute ssh --zone ${zones[$i]} openreview@${instance_names[$i]} --command "bash bin/deploy-openreview-py.sh ${TAG}" | |
done |