1
0

Update usage example in README.md

This commit is contained in:
Kyle M Hall 2019-12-18 15:16:10 -05:00
parent ca3b37caa4
commit 275fbfbc00

View File

@ -22,8 +22,12 @@ The name of the built kpz file
## Example usage
```yaml
uses: actions/github-action-koha-plugin-create-kpz@v1
with:
release-version: 'v1.2.3'
release-name: 'koha-plugin-kitchen-sink'
- name: Build Koha Plugin kpz artifact
id: kpz
uses: "bywatersolutions/github-action-koha-plugin-create-kpz@master"
with:
release-version: ${{ steps.semvers.outputs.v_patch }}
release-name: ${{ steps.myvars.outputs.GITHUB_REPO }}
```
Take a look at https://github.com/bywatersolutions/koha-plugin-kitchen-sink/blob/master/.github/workflows/main.yml for a real world usage.