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.
2 parents 603a55f + b6a14c1 commit 66840f8Copy full SHA for 66840f8
.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