Skip to content

Update deploy-github-pages.yml #4

Update deploy-github-pages.yml

Update deploy-github-pages.yml #4

name: Deploy main branch to gitub pages
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
needs: prepare
runs-on: ubuntu-22.04

Check failure on line 13 in .github/workflows/deploy-github-pages.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-github-pages.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
defaults:
run:
shell: bash
working-directory: web
steps:
- name: Checkout
uses: actions/[email protected]
working-directory: .
- name: Install pipenv
run: pip install pipenv
- name: Test
run: ls -lah && pwd
- name: Setup pipenv build environment
run: pipenv install
- name: Build install
run: pipenv run make install
- name: Package install
run: "cd install && tar cfvz ../../github-pages.tar.gz ./*"