Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: bump upload-artifact version #479

Merged
merged 1 commit into from
Nov 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ___
## Usage

GoReleaser Action runs [goreleaser][], please follow its [docs][gdocs] for
more information about how to customize what GoReleaser do.
more information about how to customize what GoReleaser does.

[goreleaser]: https://goreleaser.com/
[gdocs]: https://goreleaser.com/customization
Expand Down Expand Up @@ -139,7 +139,7 @@ signs:
### Upload artifacts

For some events like pull request or schedule you might want to store the artifacts somewhere for testing
purpose. You can do that with the [actions/upload-artifact](https://github.com/actions/upload-artifact) action:
purposes. You can do that with the [actions/upload-artifact](https://github.com/actions/upload-artifact) action:

```yaml
-
Expand All @@ -153,7 +153,7 @@ purpose. You can do that with the [actions/upload-artifact](https://github.com/a
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-
name: Upload assets
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: myapp
path: myfolder/dist/*
Expand Down
Loading