Skip to content

Removed non-maintained chatbots from my tooling page #38

Removed non-maintained chatbots from my tooling page

Removed non-maintained chatbots from my tooling page #38

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
deploy:
runs-on: ubuntu-20.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.91.2'
# extended: true
- name: Build
run: hugo --minify
- name: Deploy to matthewgall.surge.sh
uses: dswistowski/surge-sh-action@v1
with:
domain: 'matthewgall.surge.sh'
project: './public'
login: ${{ secrets.SURGE_LOGIN }}
token: ${{ secrets.SURGE_TOKEN }}
- name: Install flyctl to prepare for matthewgall.fly.dev deploy
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy to matthewgall.fly.dev
run: flyctl deploy --remote-only
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}