Skip to content

about: fix bg scaling #184

about: fix bg scaling

about: fix bg scaling #184

Workflow file for this run

name: Deploy to Neocities and Nekoweb
on:
push:
branches:
- build
concurrency: # prevent concurrent deploys doing strange things
group: deploy-to-neocities
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Prepare enviroment
run: |
mkdir -p public
cp *.xml public/
cp *.html public/
cp -r static/ public/
cp -r blog/ public/
ls public/
- name: Neocities
uses: bcomnes/deploy-to-neocities@v1
with:
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
cleanup: true
dist_dir: public
- name: Deploy to Nekoweb
uses: deploy2nekoweb/deploy2nekoweb@v4
with:
nekoweb-api-key: ${{ secrets.NEKOWEB_API_KEY }}
nekoweb-folder: '/www'
directory: 'public'