Skip to content

Commit

Permalink
Update upload-action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
syan-tibco authored Nov 21, 2023
1 parent 4663e09 commit 682db0a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/upload-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ jobs:
name: my-artifact
path: path/to/artifact/world.txt

- name: Download a single artifact
uses: actions/download-artifact@v3
with:
name: my-artifact
path: artifacts

- uses: ncipollo/release-action@v1
with:
artifacts: "release.tar.gz,foo/*.txt"
body: "this is a new release"
artifacts: "artifacts/*"
body: "this is a new release for ${{ github.event.inputs.tag }}"
tag: ${{ github.event.inputs.tag }}

0 comments on commit 682db0a

Please sign in to comment.