Skip to content

build(deps): bump vite from 4.2.1 to 4.3.9 (#22) #14

build(deps): bump vite from 4.2.1 to 4.3.9 (#22)

build(deps): bump vite from 4.2.1 to 4.3.9 (#22) #14

Workflow file for this run

name: CodeDeploy
on:
push:
branches: [ main ]
jobs:
continuous-deployment:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Create CodeDeploy Deployment
id: deploy
run: |
aws deploy create-deployment \
--application-name codedeploy-n8n-prod-us-east-1 \
--deployment-group-name n8n \
--deployment-config-name CodeDeployDefault.OneAtATime \
--github-location repository=${{ github.repository }},commitId=${{ github.sha }}