Skip to content

Commit 4fd780a

Browse files
authored
docs: replace old parameter on example code (#346)
<!-- Thank you for proposing a pull request! Please note that SOME TESTS WILL LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from forks. Someone from the team will review your Pull Request and respond. Please describe your change and any implementation details below. --> Hi maintainers, thank you for the awesome project. I think that `outputs.url` seems to be deprecated parameter because it's not included in README.md[^1] now and it returns same value of `outputs.version_url`[^2]. so I replaced `outputs.url` to `outputs.version_url` on example code on README.md [^1]: https://github.com/google-github-actions/deploy-appengine/blob/abf67aa4ea465aee02104003e9f377d8ec976ade/README.md#outputs [^2]: https://github.com/google-github-actions/deploy-appengine/blob/abf67aa4ea465aee02104003e9f377d8ec976ade/src/main.ts#L248-L253
1 parent abf67aa commit 4fd780a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
# Example of using the output
4343
- id: 'test'
44-
run: 'curl "${{ steps.deploy.outputs.url }}"'
44+
run: 'curl "${{ steps.deploy.outputs.version_url }}"'
4545
```
4646
4747
## Inputs

0 commit comments

Comments
 (0)