github-action icon indicating copy to clipboard operation
github-action copied to clipboard

:zap::octocat: A Github Action for deploying with the Serverless Framework

Results 29 github-action issues
Sort by recently updated
recently updated
newest added

Hey, I am currently unsucessfully trying to deploy a python serverless function with the github action. My `deploy.yml`: ```yml jobs: deploy: name: deploy runs-on: ubuntu-20.04 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}...

Deploying lambdas using docker images instead of layers is possible with serverless as explained [here](https://www.serverless.com/blog/container-support-for-lambda). An example: ```yaml provider: name: aws runtime: python3.8 stage: dev region: us-west-1 ecr: images: python_lambda:...

I have the following steps in my github action .yml file: ```steps: - uses: actions/checkout@v2 - name: Enter serverless dir and deploy uses: serverless/[email protected] with: args: -c "cd ./src/serverless &&...

Here's the relevant connfig in my action: ```yml test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - run: yarn install - name: Test serverless invoke locally uses: serverless/github-action@master with: args: invoke...

✔ Plugin "serverless-bundle" installed (105s) Running "serverless" from node_modules Deploying auction-service to stage dev (eu-west-1) Using configuration: { "packager": "npm", "concurrency": 2, "packagerOptions": {}, "webpackConfig": "node_modules/serverless-bundle/src/webpack.config.js", "includeModules": { "forceExclude": [...

``` name: Deploy on: push: branches: - master jobs: deploy: name: Deployment runs-on: ubuntu-latest strategy: matrix: stages: - stage: 'prod' AWS_SECRET_ACCESS_KEY: 'AWS_SECRET_ACCESS_KEY_PROD' AWS_ACCESS_KEY_ID: 'AWS_ACCESS_KEY_ID_PROD' steps: - name: Checkout uses: actions/checkout@v2...

Hi, recently I added the following workflow to my project: ``` name: Deploy main branch on: push: branches: - main jobs: deploy: name: deploy runs-on: ubuntu-latest strategy: matrix: node-version: [14.x]...

As this run inside of a Docker container, Docker itself isn't available for building docker images for Lambda functions. Ideally this container should be updated to have docker installed and...

the #51 alpine based image has caused CI built wrong binaries for AWS Lambda, See https://github.com/thematters/serverless-file-post-processing/issues/441#issuecomment-938110211 because it has arch dependent npm packages (like [sharp](https://www.npmjs.com/package/sharp)); this alpine based image has...

Hi, I would like to have the following project structure but I couldn't make it work with the v2, wondering if it's now supported. ``` .github ... workflows backend ......