Skip to content

Commit

Permalink
Update examples (#108)
Browse files Browse the repository at this point in the history
That way they define the correct action
And update upload-artifact path so that it can work as expected
  • Loading branch information
sebastienvermeille authored Jun 21, 2024
1 parent 35daab0 commit d5ff432
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit d5ff432

Please sign in to comment.