We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bca73a commit 6270199Copy full SHA for 6270199
.github/workflows/release.yml
@@ -0,0 +1,28 @@
1
+name: Release
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ release:
8
+ name: Release
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+
13
+ # you'll need to add an `id` in order to access output variables
14
+ - uses: codfish/semantic-release-action@v1
15
+ id: semantic
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
19
20
+ - run: echo ${{ steps.semantic.outputs.release-version }}
21
22
+ - run: echo "$OUTPUTS"
23
24
+ OUTPUTS: ${{ toJson(steps.semantic.outputs) }}
25
26
+ - uses: codfish/some-other-action@v1
27
+ with:
28
+ release-version: ${{ steps.semantic.outputs.release-version }}
0 commit comments