Skip to content

Add cloudformation info #2

Add cloudformation info

Add cloudformation info #2

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: rm -rf ./lambda_function.zip
- run: zip -r ./lambda_function.zip . -x ".git/*" -x "assets/*" -x .env -x "README.md" -x ".gitignore" -x ".env.example" -x "cloudformation.yml"
- uses: "marvinpinto/action-automatic-releases@919008cf3f741b179569b7a6fb4d8860689ab7f0"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Release"
files: |
lambda_function.zip