Skip to content

chore(github): setup Github oidc #3

chore(github): setup Github oidc

chore(github): setup Github oidc #3

Workflow file for this run

name: Deploy PR Preview
on:
pull_request:
branches:
- main
jobs:
remove:
name: deploy-pr-preview
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: Configure AWS Credentials - Serverless Marketing AWS Account
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::488110005556:role/GithubActionsDeploymentRole
aws-region: us-east-1
- name: Serverless Deploy - PR Preview
uses: serverless/github-action@v4
with:
args: deploy --stage pr-${{ github.event.pull_request.number }}
env:
SERVERLESS_LICENSE_KEY: ${{ secrets.SERVERLESS_LICENSE_KEY }}