5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-10 12:16:56 +00:00

Merge pull request #7 from bennypowers/patch-1

docs: add checkout to workflow in README
This commit is contained in:
Geoffrey.C 2019-12-23 20:17:43 +08:00 committed by GitHub
commit 16d8f3d61d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,6 +31,8 @@ GitHub Action for [Semantic Release](https://github.com/semantic-release/semanti
A simple example A simple example
```yaml ```yaml
steps: steps:
- name: Checkout
uses: actions/checkout@v1
- name: Semantic Release - name: Semantic Release
uses: cycjimmy/semantic-release-action@v2 uses: cycjimmy/semantic-release-action@v2
env: env:
@ -41,6 +43,8 @@ steps:
An advanced example An advanced example
```yaml ```yaml
steps: steps:
- name: Checkout
uses: actions/checkout@v1
- name: Semantic Release - name: Semantic Release
uses: cycjimmy/semantic-release-action@v2 uses: cycjimmy/semantic-release-action@v2
id: semantic # Need an `id` for output variables id: semantic # Need an `id` for output variables