Skip to content
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,14 @@ Here is how you can integrate your GitHub project with `craft`:
1. Set up a workflow that builds your assets and runs your tests. Allow building
release branches (their names follow `release/{VERSION}` by default,
configurable through `releaseBranchPrefix`).

```yaml
on:
push:
branches:
- 'release/**'
```

2. Use the official `actions/upload-artifact@v2` action to upload your assets.
Here is an example config (step) of an archive job:

Expand Down