mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
21 lines
452 B
YAML
21 lines
452 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@v2.0.0
|
|
with:
|
|
dry_run: false
|
|
input_dir: community
|
|
windmill_workspace: starter
|
|
windmill_token: ${{ secrets.WINDMILL_API_TOKEN }}
|