File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 5252 echo "npm-tag=v$(echo $VERSION | awk -F. '{print $1}')" >> "$GITHUB_OUTPUT"
5353 fi
5454
55- - name : test, build and publish to npm
55+ - id : release
56+ name : test, build and publish to npm
5657 env :
5758 BROWSERSTACK_USERNAME : ${{ secrets.BROWSERSTACK_USERNAME }}
5859 BROWSERSTACK_ACCESS_KEY : ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
5960 NODE_AUTH_TOKEN : ${{ secrets.NPM_PUBLISH_TOKEN }}
6061 run : npm publish --tag=${{ steps.npm-tag.outputs['npm-tag'] }}
62+
63+ - name : Report results to Jellyfish
64+ uses : optimizely/jellyfish-deployment-reporter-action@main
65+ if : ${{ always() && (steps.release.outcome == 'success' || steps.release.outcome == 'failure') }}
66+ with :
67+ jellyfish_api_token : ${{ secrets.JELLYFISH_API_TOKEN }}
68+ is_successful : ${{ steps.release.outcome == 'success' }}
69+ is_dry_run : true
You can’t perform that action at this time.
0 commit comments