feat: build and deploy with netlify
All checks were successful
Build and deploy / deploy (push) Successful in 2m6s
All checks were successful
Build and deploy / deploy (push) Successful in 2m6s
This commit is contained in:
parent
20d45dca90
commit
f3d4257a4b
5 changed files with 131 additions and 1 deletions
32
.forgejo/workflows/build-and-deploy.yaml
Normal file
32
.forgejo/workflows/build-and-deploy.yaml
Normal file
|
@ -0,0 +1,32 @@
|
|||
name: Build and deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: docker
|
||||
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Nix
|
||||
uses: https://guardianproject.dev/actions/install-nix-action@v31
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: nix develop --command npm install
|
||||
|
||||
- name: Generate OpenAPI section
|
||||
run: nix develop --command npm run docusaurus gen-api-docs api
|
||||
|
||||
- name: Run build
|
||||
run: nix develop --command npm run build
|
||||
|
||||
- name: Deploy
|
||||
run: nix develop --command netlify deploy --auth ${{ secrets.NETLIFY_AUTH_TOKEN }} -s ${{ vars.NETLIFY_SITE_ID }}
|
Loading…
Add table
Add a link
Reference in a new issue