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 5615d9e commit b52fcb3Copy full SHA for b52fcb3
.github/workflows/pr-storybook.yml
@@ -29,14 +29,10 @@ jobs:
29
run: |
30
npm install -g yarn lerna
31
yarn
32
- - env:
33
- EVENT_CONTEXT: ${{ toJSON(github.event) }}
34
- run: |
35
- echo $EVENT_CONTEXT
36
- name: Extract tag name
37
shell: bash
38
39
- tag=$(branch=${GITHUB_REF#refs/heads/}; echo ${branch/\//.})
+ tag=$(branch=${{ github.event.pull_request.head.ref }}; echo ${branch/\//.})
40
if [[ $tag == next.* ]];
41
then
42
echo "##[set-output name=tag;]$tag"
0 commit comments