Made a deploy thing #1
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
name: Deploy to neocities | |
# only run on changes to main. Use main or master depending on whatever your default branch is called. | |
on: | |
push: | |
branches: | |
- main | |
concurrency: # prevent concurrent deploys doing strange things | |
group: deploy-to-neocities | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# The checkout step copies your repo into the action runner. Important! | |
- uses: actions/checkout@v4 | |
# Set up any tools and build steps here | |
# This example uses a Node.js toolchain to build a site | |
# If you don't need Node.js to build your site, you can omit this. | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
# If you have a different build process, replace this with your own build steps | |
- name: Install deps and build | |
run: | | |
npm i | |
npm run build | |
# When the dist_dir is ready, deploy it to neocities | |
# Here we deploy the folder named `public` | |
- name: Deploy to neocities | |
uses: bcomnes/deploy-to-neocities@v3 | |
with: | |
api_key: ${{ secrets.NEOCITIES_KEY }} | |
cleanup: true | |
neocities_supporter: false # set this to true if you have a supporter account and want to bypass unsuported files filter. | |
preview_before_deploy: true # print a deployment plan prior to waiting for files to upload. | |
dist_dir: public |