Skip to content

Enabled the actual publishing step #24

Enabled the actual publishing step

Enabled the actual publishing step #24

Workflow file for this run

name: deploy website
# on:
# push:
# branches:
# - source
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: "true"
- uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install poetry
run: pip install poetry==1.8.3
- name: Install dependencies
run: |
poetry install --no-root
- name: Install Task
uses: arduino/setup-task@v1
- name: Build and publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# PAT to enable the that happens in the task 'publish_https'
GIT_PAT: ${{ secrets.MY_PAT }}
run: |
poetry run task publish_https