Skip to content
This repository was archived by the owner on Mar 4, 2021. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
255cf9d
Add tag name output
monkeyWie Oct 12, 2019
2b67105
Tag and release on a specific commitish
fleskesvor Dec 29, 2019
1a72e23
Add target_commitish to tests
fleskesvor Dec 29, 2019
62bca7d
Bump handlebars from 4.2.1 to 4.5.3
dependabot[bot] Dec 30, 2019
bfe866f
try body as file, use as string otherwise
jbolda Feb 4, 2020
cf2e5a0
add encoding property
jbolda Feb 4, 2020
15708f2
add new input, error if file not found
jbolda Feb 4, 2020
76860a0
fix encoding
jbolda Feb 4, 2020
c06331b
only error on actual attempt at using bodyFromFile and reorder a bit …
jbolda Feb 6, 2020
6d0973e
reorder test mock inputs
jbolda Feb 6, 2020
e0754ec
Merge pull request #1 from jbolda/body-markdown
jbolda Feb 6, 2020
716a1bc
Add versioning action to slide major versions w/ release
IAmHughes Feb 10, 2020
fca5fb5
Merge pull request #42 from actions/IAmHughes/automate-major-versioning
IAmHughes Feb 10, 2020
0e42027
Update README to show usage of "latest" version
khitrenovich Feb 27, 2020
8f324cd
Merge pull request #45 from khitrenovich/patch-1
IAmHughes Feb 28, 2020
3cd5bbb
Update README.md
jbolda Mar 8, 2020
e28d56d
Bump acorn from 5.7.3 to 5.7.4
dependabot[bot] Apr 5, 2020
b77c216
escape double quotes in eslint command
jbolda Apr 12, 2020
d16f415
switch to snake case and body_path
jbolda Apr 12, 2020
7424051
Merge branch 'master' of https://github.com/jbolda/create-release
jbolda Apr 12, 2020
9d21c8a
update readme with body_path
jbolda Apr 12, 2020
c636154
Merge pull request #33 from actions/dependabot/npm_and_yarn/handlebar…
IAmHughes Apr 17, 2020
164c698
Merge pull request #57 from actions/dependabot/npm_and_yarn/acorn-5.7.4
IAmHughes Apr 17, 2020
6addae8
Update readme example to pin to major version
ericsciple Apr 24, 2020
da6846b
Merge pull request #62 from ericsciple/patch-1
IAmHughes May 5, 2020
7bc451a
Bump actions/github to 2.2.0
pjquirk May 12, 2020
c9ba696
Merge pull request #70 from actions/users/paquirk/ghesfixes
pjquirk May 15, 2020
f37d718
define body_path
May 26, 2020
e9cf5d9
Merge pull request #2 from ssgglobal/master
jbolda May 27, 2020
ec9ee66
Add CodeQL security scanning
jhutchings1 Jun 3, 2020
80985fc
Changed release name to be optional field
Bilge Jun 13, 2020
d28992e
Merge pull request #75 from Bilge/patch-1
Jun 16, 2020
62b2b83
Merge branch 'master' into feature/support-target-commitish
Jun 16, 2020
e9dc4ac
Merge pull request #32 from fleskesvor/feature/support-target-commitish
Jun 16, 2020
84b30a2
Merge pull request #73 from jhutchings1/codeql
Jun 16, 2020
8210505
Merge branch 'master' into master
Jul 1, 2020
d3311be
Merge pull request #50 from jbolda/master
Jul 1, 2020
91b6c4e
Fix merge conflicts
mscoutermarsh Jul 1, 2020
25a1bf7
Fix tests, broken in merge, New inputs have been added since
mscoutermarsh Jul 1, 2020
44853f2
Bump lodash from 4.17.15 to 4.17.19
dependabot[bot] Jul 18, 2020
89e8dc2
Merge pull request #81 from actions/dependabot/npm_and_yarn/lodash-4.…
Jul 21, 2020
3714d4c
Add tag name output
monkeyWie Oct 12, 2019
4a0a4d9
Merge branch 'master' of github.com:monkeyWie/create-release
monkeyWie Sep 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ For more information on these outputs, see the [API Documentation](https://devel
- `id`: The release ID
- `html_url`: The URL users can navigate to in order to view the release. i.e. `https://github.com/octocat/Hello-World/releases/v1.0.0`
- `upload_url`: The URL for uploading assets to the release, which could be used by GitHub Actions for additional uses, for example the [`@actions/upload-release-asset`](https://www.github.com/actions/upload-release-asset) GitHub Action
- `tag`: The simple tag name

### Example workflow - create a release
On every `push` to a tag matching the pattern `v*`, [create a release](https://developer.github.com/v3/repos/releases/#create-a-release):
Expand Down
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ outputs:
description: 'The URL users can navigate to in order to view the release'
upload_url:
description: 'The URL for uploading assets to the release'
tag:
description: 'The simple tag name'
runs:
using: 'node12'
main: 'dist/index.js'
Expand Down
Loading