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 abde25d commit f3af000Copy full SHA for f3af000
.github/workflows/build.yml
@@ -2,8 +2,13 @@ name: Build Demo and Deploy to Github Pages
2
permissions:
3
contents: write
4
on:
5
- release:
6
- types: [prereleased, released, published]
+ # release:
+ # types: [prereleased, released, published]
7
+ # above does not work
8
+ workflow_run:
9
+ workflows: ["release.yml"]
10
+ types:
11
+ - completed
12
13
jobs:
14
build:
.github/workflows/publish.yml
@@ -1,7 +1,12 @@
1
name: Build Library and Publish Package to npmjs
runs-on: ubuntu-latest
0 commit comments