Publish Tests #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Tests | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Required for pushing to gh-pages | |
pages: write # Required for deploying to Pages | |
id-token: write # Required for deploying to Pages | |
steps: | |
- name: Checkout current repository | |
uses: actions/checkout@v4 | |
with: | |
path: "current-repo" | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Clone editor-online-preview repository | |
run: | | |
git clone https://github.com/lvgl-private/editor-test-preview.git /tmp/editor-preview | |
- name: Prepare preview files | |
run: | | |
# Create project directory in the preview | |
mkdir -p /tmp/editor-preview/project | |
# Copy current repo contents to project directory | |
cp -r current-repo/* /tmp/editor-preview/project/ | |
- name: Generate manifest file | |
run: | | |
cd /tmp/editor-preview | |
node generateProjectManifest.js ./project/ "project/" | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: /tmp/editor-preview | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
with: | |
path: /tmp/editor-preview |