Skip to content

Commit

Permalink
doc: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove authored Jul 31, 2024
1 parent 65ebf9d commit 962e7f6
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,12 @@ Use `steps.<job_id>.outputs.successful` to determine whether the version is crea
${{ steps.changelog.outputs.changelog }}
```

OR use `jaywcjlove/create-tag-action@main`:
OR use `jaywcjlove/create-tag-action@main` create release:

```yml
- name: Generate Changelog
- name: Create Release
uses: jaywcjlove/create-tag-action@main
id: release
if: steps.create_tag.outputs.successful == 'true'
with:
version: ${{steps.create_tag.outputs.version}}
Expand All @@ -147,6 +148,13 @@ OR use `jaywcjlove/create-tag-action@main`:
${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
- name: Release Upload Assets
uses: jaywcjlove/github-action-upload-assets@main
continue-on-error: true
with:
tag: ${{ steps.release.outputs.version }}
asset-path: '["./target/release/sgo-*"]'
```
## See Also
Expand Down

0 comments on commit 962e7f6

Please sign in to comment.