Merge pull request 'feat(workflow): added manual deploy workflow' (#3) from feature/manual-deploy-workflow into mistress
Reviewed-on: https://gitea.foxhawk.co.uk/riley/MyWebsite-Astro/pulls/3
This commit is contained in:
commit
2f5441e898
1 changed files with 26 additions and 0 deletions
26
.gitea/workflows/ManualPushToNeocities.yaml
Normal file
26
.gitea/workflows/ManualPushToNeocities.yaml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
name: Manual push to live
|
||||
run-name: ${{ gitea.actor }} is manually deploying to neocities
|
||||
on: workflow_dispatch
|
||||
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 20
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Build Vite site
|
||||
run: npm run build
|
||||
- name: Deploy to neocities
|
||||
uses: bcomnes/deploy-to-neocities@v3
|
||||
with:
|
||||
api_key: ${{ secrets.NEOCITIES_API_TOKEN }}
|
||||
cleanup: false
|
||||
neocities_supporter: false
|
||||
preview_before_deploy: true
|
||||
dist_dir: dist
|
||||
Loading…
Add table
Add a link
Reference in a new issue