File tree Expand file tree Collapse file tree 4 files changed +36
-472
lines changed
Expand file tree Collapse file tree 4 files changed +36
-472
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [kotlin]
6+ pull_request :
7+ branches : [kotlin]
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ with :
19+ submodules : true
20+
21+ - name : Install Rust
22+ run : rustup update stable --no-self-update && rustup default stable
23+
24+ - run : cargo build
25+
26+ notify-downstream :
27+ needs : build
28+ if : github.event_name == 'push'
29+ runs-on : ubuntu-latest
30+ steps :
31+ - uses : peter-evans/repository-dispatch@v3
32+ with :
33+ token : ${{ secrets.CROSS_REPO_PAT }}
34+ repository : Kotlin/hyperlight-wasm-http-example
35+ event-type : upstream-changed
36+ client-payload : ' {"repo": "${{ github.repository }}", "sha": "${{ github.sha }}"}'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments