Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
nwtgck committed May 30, 2020
2 parents c6e2a32 + 4a2aa44 commit 28ca95e
Show file tree
Hide file tree
Showing 9 changed files with 19,331 additions and 12,394 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.1.1] - 2020-05-30
### Added
* Add "netlify-config-path" input to specify path to `netlify.toml`
* Support GitHub Deployments

### Changed
* Update dependencies

## [1.1.0] - 2020-05-10
## Added
### Added
* Add "overwrites-pull-request-comment" input

### Changed
Expand All @@ -18,7 +26,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
### Changed
* Update dependencies

## Added
### Added
* Add "enable-pull-request-comment" input
* Add "enable-commit-comment" input

Expand Down Expand Up @@ -95,7 +103,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
* Deploy to Netlify
* Comment on GitHub PR

[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/nwtgck/actions-netlify/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/nwtgck/actions-netlify/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/nwtgck/actions-netlify/compare/v1.0.13...v1.1.0
[1.0.13]: https://github.com/nwtgck/actions-netlify/compare/v1.0.12...v1.0.13
[1.0.12]: https://github.com/nwtgck/actions-netlify/compare/v1.0.11...v1.0.12
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ GitHub Actions for deploying to Netlify

Deploy URLs are commented on your pull requests and commit comments!

<img src="doc_assets/github-deployment.png" width="650">

GitHub Deployments are also supported!

## Usage

```yaml
Expand All @@ -22,8 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v2

# Build to ./dist or other directory
# ...
# ( Build to ./dist or other directory... )

- name: Deploy to Netlify
uses: nwtgck/[email protected]
Expand Down Expand Up @@ -53,7 +56,8 @@ jobs:
- `deploy-message` A custom deploy message to see on Netlify deployment (e.g. `${{ github.event.pull_request.title }}`)
- `enable-pull-request-comment: true` Comment on pull request (default: true)
- `enable-commit-comment: true` Comment on GitHub commit (default: true)
- `overwrites-pull-request-comment: true` Overwirtes comment on pull request (default: true)
- `overwrites-pull-request-comment: true` Overwrites comment on pull request (default: true)
- `netlify-config-path: ./netlify.toml` Path to `netlify.toml` (default: undefined)

### Outputs
- `deploy-url` A deployment URL generated by Netlify
Expand Down
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ inputs:
overwrites-pull-request-comment:
description: Overwrites pull request comment
required: false
netlify-config-path:
description: Path to netlify.toml
required: false
outputs:
deploy-url:
description: Deploy URL
Expand Down
Loading

4 comments on commit 28ca95e

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.