Skip to content

docs: release 1.4.0 #11

docs: release 1.4.0

docs: release 1.4.0 #11

Workflow file for this run

name: Build
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run build
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: git@github.com:drunkg00se/Pixiv-Downloader.git
BRANCH: build
FOLDER: dist
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY }}