We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 159eca6 commit 5ba331cCopy full SHA for 5ba331c
1 file changed
.github/workflows/publish.yml
@@ -0,0 +1,18 @@
1
+name: Publish
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ publish:
9
+ if: ${{ !github.event.release.draft }}
10
+ runs-on: ubuntu-latest
11
+ environment: release
12
+ steps:
13
+ - uses: DevExpress/testcafe-build-system/actions/publish-with-publish-please@main
14
+ env:
15
+ BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
16
+ BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
17
+ with:
18
+ token: ${{ secrets.NPM_TOKEN }}
0 commit comments