Automate website updates!
hell yeah!
This commit is contained in:
parent
3696226ac4
commit
fb3fc03d49
1 changed files with 25 additions and 0 deletions
25
.github/workflows/deployment.yml
vendored
Normal file
25
.github/workflows/deployment.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Deploy to Neocities
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- system64.neocities.org
|
||||
jobs:
|
||||
Deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "Yooo new site update, I gotchu."
|
||||
- name: Use Node.JS :)
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 12
|
||||
- name: Install dependents and build.
|
||||
run: |
|
||||
npm i
|
||||
npm run build
|
||||
- name: Deploy to Neocities
|
||||
uses: bcomnes/deploy-to-neocities@v1.1.4
|
||||
with:
|
||||
api_token: ${{ secrets.NEOCITIES_API_TOKEN }}
|
||||
cleanup: false
|
||||
dist_dir: public
|
||||
- run: echo "Done!"
|
Loading…
Reference in a new issue