Merge pull request #17 from serverless/add-custom-scripts-plugin #31
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: Deploy Prod | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
deploy: | |
name: deploy-prod | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm ci | |
- name: Update domain settings | |
uses: mikefarah/yq@master | |
with: | |
cmd: | | |
yq -i '.stages.prod.params.customDomainName = "${{ vars.CUSTOM_DOMAIN_NAME }}"' serverless-compose.yml | |
yq -i '.stages.prod.params.customDomainCertificateARN = "${{ vars.CUSTOM_DOMAIN_CERTIFICATE_ARN }}"' serverless-compose.yml | |
- name: Configure AWS Credentials - Serverless Marketing AWS Account | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::488110005556:role/GithubActionsDeploymentRole | |
aws-region: us-east-1 | |
- name: Serverless Deploy - Prod | |
uses: serverless/github-action@v4 | |
with: | |
args: deploy --stage prod | |
env: | |
SERVERLESS_LICENSE_KEY: ${{ secrets.SERVERLESS_LICENSE_KEY }} |