-
Notifications
You must be signed in to change notification settings - Fork 73
chore: add deploy script #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b2c97ce
chore: add deploy script
Parkreiner 12d4d72
wip: commit progress on terraform validation
Parkreiner 62cf5fd
fix: update permission level for terraform_validate
Parkreiner 5d14f87
fix: add filter logic to Bash scraping
Parkreiner d8ae744
fix: remove changes from different branch
Parkreiner 3ae1638
fix: apply fixes to glob pattern
Parkreiner cdc1bf2
fix: exclude validation binary
Parkreiner 9e7b32e
Merge branch 'main' into mes/deploy-script
Parkreiner b87bb61
fix: remove duplicate entry
Parkreiner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: deploy-registry | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- "release/*/v*" # Matches tags like release/module-name/v1.0.0 | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
# Set id-token permission for gcloud | ||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Authenticate with Google Cloud | ||
uses: google-github-actions/auth@71f986410dfbc7added4569d411d040a91dc6935 | ||
with: | ||
workload_identity_provider: projects/309789351055/locations/global/workloadIdentityPools/github-actions/providers/github | ||
service_account: [email protected] | ||
- name: Set up Google Cloud SDK | ||
uses: google-github-actions/setup-gcloud@77e7a554d41e2ee56fc945c52dfd3f33d12def9a | ||
# 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 |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.