From 275fbfbc00748957fff49233c015551dd21915cc Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 18 Dec 2019 15:16:10 -0500 Subject: [PATCH] Update usage example in README.md --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e03f941..e5309af 100644 --- a/README.md +++ b/README.md @@ -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.