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 62be8a1 commit b6a14c1Copy full SHA for b6a14c1
.github/workflows/workflow.yml
@@ -19,6 +19,9 @@ jobs:
19
node-version: 14
20
- run: npm install
21
- run: npm run build
22
- - run: bash ".ci/publish_bintray.sh" "${GITHUB_REF##*/}"
+ - run: |
23
+ if [ $(echo "${{ github.ref }}" | grep -P "dev|canary") ]; then
24
+ bash ".ci/publish_bintray.sh" "${GITHUB_REF##*/}"
25
+ fi
26
env:
27
BINTRAY_API_TOKEN: ${{ secrets.BINTRAY_API_TOKEN }}
0 commit comments