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.
26 lines
609 B
YAML
26 lines
609 B
YAML
name: deploy-registry
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- bcpeinhardt/ci-to-build-new-registry-on-push-to-main
|
|
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run deploy-registry.sh
|
|
run: |
|
|
./.github/scripts/deploy-registry.sh
|
|
env:
|
|
GCLOUD_API_KEY: ${{ secrets.GCLOUD_API_KEY }}
|
|
GCLOUD_PROD_DEPLOY_SECRET: ${{ secrets.GCLOUD_PROD_DEPLOY_SECRET }}
|
|
GCLOUD_DEV_DEPLOY_SECRET: ${{ secrets.GCLOUD_DEV_DEPLOY_SECRET }}
|
|
|