This commit is contained in:
19
.gitea/workflows/deploy.yml
Normal file
19
.gitea/workflows/deploy.yml
Normal file
@ -0,0 +1,19 @@
|
||||
name: Deploy
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: aburgess/node:22-npm
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: docker://aburgess/checkout:latest
|
||||
with:
|
||||
token: ${{ github.token }}
|
||||
- name: Install Nodejs
|
||||
run: pnpm i
|
||||
- name: Deploy
|
||||
run: ./deploy
|
||||
env:
|
||||
DEPLOY_PASS: ${{ secrets.DEPLOY_PASS }}
|
Reference in New Issue
Block a user