Add a tip about hooks to docs #331
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
name: CI/CD | |
on: | |
push: | |
branches: | |
- main | |
# Make sure that we don't try to deploy from both this workflow and the self-hosted-release workflow | |
concurrency: | |
group: "deployment" | |
jobs: | |
deploy-to-preprod: | |
name: Deploy to pre-production | |
uses: ./.github/workflows/deploy-to-environment.yaml | |
with: | |
environment_code: preprod | |
environment_name: Pre-Production | |
environment_url: https://docs.spacelift.dev/ | |
deploy_self_hosted: true | |
secrets: | |
# KLUDGE: We are not actually passing the secrets here. | |
# What we’re really doing is passing the key to the secret that we want the reusable workflow to use. | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
AWS_ROLE_TO_ASSUME: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
BUCKET_NAME: ${{ secrets.BUCKET_NAME }} | |
CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} | |
deploy-to-prod: | |
name: Deploy to production | |
uses: ./.github/workflows/deploy-to-environment.yaml | |
with: | |
environment_code: prod | |
environment_name: Production | |
environment_url: https://docs.spacelift.io/ | |
deploy_self_hosted: true | |
secrets: | |
# KLUDGE: We are not actually passing the secrets here. | |
# What we’re really doing is passing the key to the secret that we want the reusable workflow to use. | |
AWS_REGION: ${{ secrets.AWS_REGION }} | |
AWS_ROLE_TO_ASSUME: ${{ secrets.AWS_ROLE_TO_ASSUME }} | |
BUCKET_NAME: ${{ secrets.BUCKET_NAME }} | |
CLOUDFRONT_DISTRIBUTION_ID: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} |