mirror of
https://github.com/joyieldInc/predixy.git
synced 2025-12-24 22:46:41 +08:00
22 lines
367 B
YAML
22 lines
367 B
YAML
name: Publish And Deploy Demo # 自动部署的名称
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
- dev
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@master
|
|
-
|
|
name: Setup Make
|
|
uses: actions/setup-make@master
|
|
-
|
|
name: Build
|
|
run: make
|