Skip to content

updated dependencies & fixed some errors #12

updated dependencies & fixed some errors

updated dependencies & fixed some errors #12

Workflow file for this run

name: Run deploy script
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Configure Git
run: |
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
git remote set-url origin https://${{ secrets.GIT_TOKEN }}@github.com/ufolinux/ufolinux.tk.git
- name: Run deploy script
env:
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
CI: false
run: npm run deploy