From 0ef86907a4df86ddb73dd8c6ad5dfaf8860faee3 Mon Sep 17 00:00:00 2001 From: fal7w <147312030+fal7w@users.noreply.github.com> Date: Thu, 30 Nov 2023 22:16:05 +0300 Subject: [PATCH] Create crwate_site.yml --- .github/workflows/crwate_site.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/crwate_site.yml diff --git a/.github/workflows/crwate_site.yml b/.github/workflows/crwate_site.yml new file mode 100644 index 00000000..61026a84 --- /dev/null +++ b/.github/workflows/crwate_site.yml @@ -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 +