-
-
Notifications
You must be signed in to change notification settings - Fork 3
36 lines (29 loc) · 737 Bytes
/
neocities.yml
File metadata and controls
36 lines (29 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Deploy domstack website to neociteis
on:
push:
branches:
- master
env:
FORCE_COLOR: 1
concurrency: # prevent concurrent deploys doing starnge things
group: deploy-to-neocities
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version-file: package.json
check-latest: true
- run: npm i
- run: npm run build
- name: Deploy to neocities
uses: bcomnes/deploy-to-neocities@v3
with:
api_key: ${{ secrets.NEOCITIES_DOMSTACK_API_TOKEN }}
cleanup: true
neocities_supporter: true
preview_before_deploy: true