Austin Ryan Lawson

Results 15 comments of Austin Ryan Lawson

If you want to use `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` you need to add `--use-local-credentials` in your `args`.

Created #90 to add specific options for this.

Created #90 to allow changing working directory and installing packages, should provide a cleaner way to accomplish this.

The `configure-aws-credentials` action has the following [outputs](https://github.com/aws-actions/configure-aws-credentials/blob/main/action.yml): - `aws-access-key-id` - `aws-secret-access-key` - `aws-session-token` You can pass them into the Serverless action as environment variables. For example: ```yaml - name: Configure...

@DavideViolante @ac360 @eahefnawy @czubocha I'm interested in maintaining this repo; I use Serverless and GitHub Actions for pretty much all of my projects and I'd hate to see it go...

You can pass `AWS_SECRET_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables with `--use-local-credentials`

@GethosTheWalrus Builds are passing after updating the branch. https://github.com/GethosTheWalrus/axios/actions/runs/9233322382

You need to supply arguments with `args`. The action just runs `serverless` so it's expecting user input. ```yaml name: Deploy on: push: branches: - main jobs: build: runs-on: ubuntu-latest steps:...