Delete CNAME #19
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
# This is a basic workflow to help you get started with Actions | |
name: static-blog-ci-cd | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup repo | |
uses: actions/checkout@v3 | |
- name: setup Deno | |
# uses: denoland/setup-deno@v1 | |
uses: denoland/setup-deno@004814556e37c54a2f6e31384c9e18e983317366 | |
with: | |
deno-version: v1.x | |
cache: 'deno' | |
- name: generate index with Deno | |
run: deno run -A ./index-json-generator.ts ./docs ./assets | |
- name: Git Auto Commit | |
# You may pin to the exact commit or the version. | |
# uses: stefanzweifel/git-auto-commit-action@49620cd3ed21ee620a48530e81dba0d139c9cb80 | |
uses: stefanzweifel/git-auto-commit-action@v4.14.1 | |
with: | |
branch: master | |
# deploy: | |
# runs-on: ubuntu-latest | |
# needs: build | |
# steps: |