Skip to content

removed package.json #101

removed package.json

removed package.json #101

Workflow file for this run

name: Publish on GitHub Pages
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup Deno environment
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Build site
run: |
deno task build --location=https://lumeland.github.io/base-blog/
- name: Deploy
uses: crazy-max/[email protected]
with:
build_dir: _site
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}