Create web-deploy.yml
This commit is contained in:
parent
08c9ce345b
commit
66d2403149
1 changed files with 22 additions and 0 deletions
22
.github/workflows/web-deploy.yml
vendored
Normal file
22
.github/workflows/web-deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: Web Deployment
|
||||
on:
|
||||
workflow_dispatch: {}
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- synchronize
|
||||
- ready_for_review
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- web/**
|
||||
jobs:
|
||||
deploy:
|
||||
permissions:
|
||||
contents: read
|
||||
runs-on: ['self-hosted', 'pi']
|
||||
|
||||
Loading…
Reference in a new issue