Skip to content

Commit

Permalink
ci: create a test pipeline for fleek issue invetigation
Browse files Browse the repository at this point in the history
  • Loading branch information
ludo committed Jan 6, 2025
1 parent 743294b commit 3ff55e0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/fleek-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy DR_Center_testing via Fleek
on:
workflow_call:
jobs:
deploy-to-fleek:
runs-on: ubuntu-latest
env:
FLEEK_TOKEN: ${{ secrets.FLEEK_TOKEN }}
FLEEK_PROJECT_ID: ${{ secrets.FLEEK_PROJECT_ID }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Packages
run: npm ci
- name: Build & deploy sites
run: npx fleek -- sites deploy --config ./.fleek_dr_center_testing.json

0 comments on commit 3ff55e0

Please sign in to comment.