Only activate gitea action on push to 'main'
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 20s
All checks were successful
Build and Publish WASM version of demo / Build-And-Deploy (push) Successful in 20s
This commit is contained in:
parent
596912617f
commit
b0e898fb17
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
name: Build and Publish WASM version of demo
|
||||
run-name: ${{ gitea.actor }} is building the WASM version
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
|
||||
jobs:
|
||||
Build-And-Deploy:
|
||||
|
|
Loading…
Reference in a new issue