Skip to content

Commit 5ba331c

Browse files
authored
ci: add publish task
1 parent 159eca6 commit 5ba331c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)