Skip to content

Commit

Permalink
update pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed Sep 24, 2024
1 parent 6185b0a commit 004542e
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 23 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master/v3"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Run Tests
run: |
node tester.js
- name: Generate db.json
run: |
node db.js
# only build once test is passed

- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
41 changes: 18 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,30 @@
name: Upload to KeyCDN
name: build db

on: workflow_dispatch
on:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
ftp-upload:
name: 🎉 Upload
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Complie DB
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: Get latest code
uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: '14'

- name: Update db.json and move it all to ./build/
- name: Install dependencies
run: npm install

- name: Run Tests
run: |
mkdir dist
mkdir dist/components
cp components/* dist/components
npm install total4
node db.js
cp db.json dist/components/db.json
ls dist/components -la
- name: FTP Deployer
uses: sand4rt/ftp-deployer@v1.3
with:
host: ${{ secrets.KEYCDN_SERVER }}
username: ${{ secrets.KEYCDN_USERNAME }}
password: ${{ secrets.KEYCDN_PASSWORD }}
remote_folder: /flowstream/components
local_folder: dist/components # optional, local path, default is: dist
node tester.js
- name: Generate db.json commit it back to repo.
run: |
node db.js

0 comments on commit 004542e

Please sign in to comment.