-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
That way they define the correct action And update upload-artifact path so that it can work as expected
- Loading branch information
1 parent
35daab0
commit d5ff432
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ Used for inserting data into the [internal actions marketplace](https://github.c | |
Minimal uses expression to use this action: | ||
|
||
``` yaml | ||
uses: devops-actions/github-action-[email protected] | ||
uses: devops-actions/[email protected] | ||
with: | ||
PAT: ${{ secrets.GITHUB_TOKEN }} # use an Access Token with correct permissions to view private repos if you need to | ||
``` | ||
|
@@ -33,7 +33,7 @@ jobs: | |
load-all-used-actions: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: devops-actions/github-action-[email protected] | ||
- uses: devops-actions/[email protected] | ||
name: Load used actions | ||
id: load-actions | ||
with: | ||
|
@@ -47,7 +47,7 @@ jobs: | |
uses: actions/upload-artifact@v2 | ||
with: | ||
name: actions-file | ||
path: actions.json | ||
path: ${{ steps.load-actions.outputs.actions-file }} | ||
``` | ||
|
||
## Inputs | ||
|