Skip to content

Commit

Permalink
chore: rename artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
FaGru3n committed Jul 21, 2023
1 parent 3f0e8c0 commit 739ad3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-generate-mermaid-svg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,6 @@ jobs:
- uses: actions/upload-artifact@v3
# upload generated files as Job artifacts which can be downloaded in the in your caller workflow
with:
name: my-svg-artifacts
name: artifacts
path: "**/*.svg"
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
2 changes: 1 addition & 1 deletion .github/workflows/reusable-generate-puml-svg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:

- uses: actions/upload-artifact@v3
with:
name: my-puml-artifacts
name: artifacts
path: "**/*.svg"
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/download-artifact@v3
id: download
with:
name: my-puml-artifacts
name: artifacts
path: ${{ github.workspace }}
# now you can handle the files in your desired way
```
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
uses: actions/download-artifact@v3
id: download
with:
name: my-svg-artifacts
name: artifacts
# choose where to store this file
path: ${{ github.workspace }}
# now you can handle the files in your desired way
Expand Down

0 comments on commit 739ad3d

Please sign in to comment.