aws-sam-github-actions-example
aws-sam-github-actions-example copied to clipboard
Provides an example for users to utilize AWS SAM combined with GitHub Actions to achieve a continuous delivery pipeline.
`save-state` and `set-output` commands used in GitHub Actions are deprecated and [GitHub recommends using environment files](https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/). This PR updates the usage of `::set-output` to `"$GITHUB_OUTPUT"` Instructions for envvar usage from...
**Issue Number:** #10 **Description of Changes:** As suggested in the issue noted above, `sam deploy` provides an extra arg called `--no-fail-on-empty-changeset` which stops it returning a non-zero exit code when...
**Describe the bug** When a change is pushed to main which doesn't update the SAM template, the deployment job will fail. **To Reproduce** Steps to reproduce the behavior: The previous...
The sample provides a bit dated code. I think using `aws-actions/setup-sam@v2` would remove some boilerplate, and `actions/checkout@v2` is also a bit dated - should be `v4` at this point. Using...