You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
YAML
38 lines
1.4 KiB
YAML
name: deploy-registry
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- bcpeinhardt/ci-to-build-new-registry-on-push-to-main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
# Set id-token permission for gcloud
|
|
# Adding a comment because retriggering the build manually hung? I am the lord of devops and you will bend?
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Authenticate to Google Cloud
|
|
uses: google-github-actions/auth@6fc4af4b145ae7821d527454aa9bd537d1f2dc5f
|
|
with:
|
|
workload_identity_provider: projects/309789351055/locations/global/workloadIdentityPools/github-actions/providers/github
|
|
service_account: registry-v2-github@coder-registry-1.iam.gserviceaccount.com
|
|
|
|
- name: Set up Google Cloud SDK
|
|
uses: google-github-actions/setup-gcloud@6189d56e4096ee891640bb02ac264be376592d6a
|
|
|
|
# For the time being, let's have the first couple merges to main in modules deploy a new version
|
|
# to *dev*. Once we review and make sure everything's working, we can deploy a new version to *main*.
|
|
# Maybe in the future we could automate this based on the result of E2E tests.
|
|
- name: Deploy to dev.registry.coder.com
|
|
run: |
|
|
gcloud builds triggers run 29818181-126d-4f8a-a937-f228b27d3d34 --branch dev
|
|
|