Skip to content

fixed workflow file and easter egg issues #9

fixed workflow file and easter egg issues

fixed workflow file and easter egg issues #9

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@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22' # Specify the Node.js version you need
- 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: ''
run: npm run deploy:ci