Skip to content

Bump js-yaml from 4.1.0 to 4.1.1 (#94) #187

Bump js-yaml from 4.1.0 to 4.1.1 (#94)

Bump js-yaml from 4.1.0 to 4.1.1 (#94) #187

Workflow file for this run

name: Deploy
on:
push:
branches:
- sveltekit
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: csail-build
FOLDER: build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"