diff --git a/.github/workflows/gitbuilding.yml b/.github/workflows/gitbuilding.yml index 09c7781..e54aeee 100644 --- a/.github/workflows/gitbuilding.yml +++ b/.github/workflows/gitbuilding.yml @@ -1,2670 +1,26 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - syringe-pumps-and-controller/.github/workflows/gitbuilding.yml at docu-v2 · wenzel-lab/syringe-pumps-and-controller - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- Skip to content - - - - - - - - - - - - -
-
- - - - - - - - - - - - - -
- -
- - - - - - - - -
- - - - - -
- - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - -
- Open in github.dev - Open in a new github.dev tab - Open in codespace - - - - - - - - - - - - - - - - - - -

Files

t

Latest commit

 

History

History
26 lines (23 loc) · 665 Bytes

File metadata and controls

26 lines (23 loc) · 665 Bytes
-
- - - - -
- -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - - -
- -
-
- - - +name: Deploy Gitbuilding Project to Github Pages + +on: [push] + +jobs: + build_and_deploy: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Install Python 3 + uses: actions/setup-python@v1 + with: + python-version: "3.7" + - name: Build + run: | + pip install gitbuilding + gitbuilding build-html + - name: Deploy + uses: JamesIves/github-pages-deploy-action@3.7.1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + BRANCH: main + FOLDER: _site/ + # Automatically remove deleted files from the deploy branch + CLEAN: false