Skip to content

Commit

Permalink
updated example version
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRohn authored May 16, 2022
1 parent e34f7d3 commit 45ff10a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Use latest release tag, body content or, download release assets of a github rel
```yml
- name: Get Release data of private repository
id: release_data
uses: KevinRohn/[email protected]
uses: KevinRohn/[email protected].1
with:
repository: "organisation-or-username/repository" # (Optional) Repository name to fetch release data.
token: ${{ secrets.GITHUB_TOKEN }} # (Optional) `token` of the private repository from which the release information should be retrieved.
Expand All @@ -39,7 +39,7 @@ Use latest release tag, body content or, download release assets of a github rel
# Fetch release data of the current repository from where the workflow is used.
- name: Get Release data
id: release_data
uses: KevinRohn/[email protected].0
uses: KevinRohn/[email protected].1
- name: Show tag name with echo
run: echo ${{ steps.release_data.outputs.tag_name }}
Expand All @@ -50,7 +50,7 @@ Use latest release tag, body content or, download release assets of a github rel
```yml
- name: Get Release data of private repository
id: release_data
uses: KevinRohn/[email protected].0
uses: KevinRohn/[email protected].1
with:
repository: "organisation-or-username/repository"
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -72,7 +72,7 @@ Use latest release tag, body content or, download release assets of a github rel
```yml
- name: Download release asset file
id: release_data
uses: KevinRohn/[email protected].0
uses: KevinRohn/[email protected].1
with:
asset-file: '*.dat'
asset-output: './'
Expand Down

0 comments on commit 45ff10a

Please sign in to comment.