Skip to content

Commit

Permalink
feat(gha): build base theme
Browse files Browse the repository at this point in the history
WEB-4112
  • Loading branch information
remdub committed Jul 19, 2024
1 parent ee4370a commit 89c13ed
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build
on:
workflow_dispatch:

jobs:
install-deps:
runs-on:
group: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y nodejs npm
sudo npm install -g pnpm
- name: Build theme
run: |
pnpm --theme=base build
- name: Archive theme
uses: actions/[email protected]
with:
name: basetheme
path: |
base/theme.zip

0 comments on commit 89c13ed

Please sign in to comment.