add title and deploy
Some checks failed
Deploy / deploy (push) Failing after 18s

This commit is contained in:
2024-08-25 15:00:44 +10:00
parent 756059895f
commit d269ed8d38
3 changed files with 21 additions and 1 deletions

View 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 }}