Skip to content

Testing new woflow.

Testing new woflow. #2

Workflow file for this run

name: Deploy Site

Check failure on line 1 in .github/workflows/Deploy_site.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/Deploy_site.yml

Invalid workflow file

(Line: 27, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 28, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
#pull_request:
# branches:
# - main
push:
branches:
- robolancer_updates
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install -r requirements.txt
- run: mkdocs build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
- id: deployment
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/deploy-pages@v4
#- run: mkdocs gh-deploy --force