Troubleshoot github action #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |