-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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 }} | ||
|
@@ -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 }} | ||
|
@@ -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: './' | ||
|