Skip to content

Commit

Permalink
add git ci for dev
Browse files Browse the repository at this point in the history
  • Loading branch information
olton committed Jan 24, 2025
1 parent c63378e commit a0aca9f
Show file tree
Hide file tree
Showing 7 changed files with 110,734 additions and 18 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy-to-keycdn-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches:
- dev
name: Deploy to KeyCDN
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: npm install

- name: Build
run: npm run dev

- name: Push files
uses: SamKirkland/[email protected]
with:
server: ftp.keycdn.com
username: metro4
password: ${{ secrets.FTP_PASSWORD_KEYCDN }}
dangerous-clean-slate: true
local-dir: ./lib/
server-dir: dev/

Loading

0 comments on commit a0aca9f

Please sign in to comment.