mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-24 08:45:10 +00:00
Create crwate_site.yml
This commit is contained in:
parent
04baf49bd4
commit
0ef86907a4
1 changed files with 27 additions and 0 deletions
27
.github/workflows/crwate_site.yml
vendored
Normal file
27
.github/workflows/crwate_site.yml
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: create site
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
rcreate_site:
|
||||
runs-on: self-hosted
|
||||
|
||||
|
||||
steps:
|
||||
- name: Checkout Repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt # Add this if you have any Python dependencies
|
||||
|
||||
- name: Run create site Script
|
||||
run: python fintechsys/create_site.py
|
||||
|
||||
Loading…
Reference in a new issue