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 31 github-action issues
Sort by recently updated
recently updated
newest added

i need to assume a role in order to deploy. aws-actions has a way to this. is there a way for the serverless/githhub-action to use those credentials?

Hello Serverless, It seems like this repo is abandoned. If so, would you recommend another package for the community to use and deprecate this one?

help wanted

Would it be possible to get the [verified ](https://docs.github.com/en/actions/learn-github-actions/finding-and-customizing-actions)status for this action on github? This could help us adopt this because some enterprise organizations require this certification.

Github marketplace still shows only 1.53 version available in the marketplace. How can I access the latest version of serverless github action?

My code: ``` name: Deploy master branch on: push: branches: - master jobs: deploy: name: deploy runs-on: ubuntu-latest strategy: matrix: node-version: [14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js...

This took a while to figure out so I'd like to share and advise that it'd be nice to see in the README or elsewhere in the documentation. My use...

I have a monorepo which holds three different Serverless projects. When deploying manually I can simply `cd` in to each directory and run `sls deploy`. When using the GitHub workflow,...

I need to use the following environment variables in order for npm to install the correct stuff: - npm_config_arch: x64 - npm_config_platform: linux At the moment, `linuxmusl` is used instead...

Hi guys, assuming that env: SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }} # or if using AWS creds directly # AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} # AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} Serverless said: DOTENV: Could...

Hello lovely people of Serverless. This Github Action has been super handy in automating my deployments and I really appreciate that Serverless is offering/hosting an official Github Action. Here are...