Skip to content
This repository has been archived by the owner on Jan 12, 2025. It is now read-only.

make the about icon in taskbar open about window (#157) #51

make the about icon in taskbar open about window (#157)

make the about icon in taskbar open about window (#157) #51

Workflow file for this run

name: πŸš€ Deploy
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
web-deploy:
name: πŸŽ‰ Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
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: Build
run: npm run build
env:
URL_ORIGIN: 'https://meos.lima.zone'
- name: πŸ“‚ Sync files
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ secrets.ftp_server }}
username: ${{ secrets.ftp_username }}
password: ${{ secrets.ftp_password }}
server-dir: 'MeOS/'
local-dir: 'dist/'
security: loose