21 lines
451 B
YAML
21 lines
451 B
YAML
name: Deploy to windmill.dev
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "community/*"
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Deploy to windmill.dev
|
|
uses: windmill-labs/windmill-gh-action-deploy@v1.0.0
|
|
with:
|
|
dry_run: false
|
|
input_dir: community
|
|
windmill_workspace: starter
|
|
windmill_token: ${{ secrets.WINDMILL_API_TOKEN }}
|