-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gha): upload modified theme [skip ci]
WEB-4112
- Loading branch information
Showing
2 changed files
with
59 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,41 @@ | ||
name: Build | ||
name: Build and upload themes | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
base-theme: | ||
get-changed-directories: | ||
runs-on: | ||
group: self-hosted | ||
outputs: | ||
changed-directories: ${{ steps.set-output.outputs.changed-directories }} | ||
steps: | ||
- name: Install Git | ||
run: sudo apt-get update && sudo apt-get install -y git | ||
- 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: Get changed directories names | ||
id: changed-directories | ||
uses: tj-actions/[email protected] | ||
with: | ||
dir_names: 'true' | ||
dir_names_exclude_current_dir: 'true' | ||
dir_names_max_depth: '1' | ||
- name: Set output | ||
id: set-output | ||
run: echo "changed-directories=${{ steps.changed-directories.outputs.all_changed_files }}" >> "$GITHUB_OUTPUT" | ||
- name: Summary | ||
run: | | ||
echo "Changed directories: ${{ steps.changed-directories.outputs.all_changed_files }}" | ||
build-push: | ||
environment: build-push | ||
needs: get-changed-directories | ||
runs-on: | ||
group: self-hosted | ||
steps: | ||
|
@@ -21,14 +53,21 @@ jobs: | |
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install dev dependencies | ||
- name: Install node dev dependencies | ||
run: | | ||
pnpm install | ||
- name: Build theme | ||
- name: Build themes | ||
run: | | ||
for directory in ${{ needs.get-changed-directories.outputs.changed-directories }}; do | ||
echo Building theme for $directory | ||
pnpm --theme=$directory build | ||
done | ||
- name: Install upload dependencies | ||
run: | | ||
pnpm --theme=base build | ||
- name: Upload theme | ||
sudo apt-get update && sudo apt-get install -y python3-pip jq | ||
pip3 install requests && pip3 install bs4 | ||
- name: Upload themes | ||
run: | | ||
sudo apt-get update && sudo apt-get install -y python3-pip | ||
pip3 install requests && pip install bs4 | ||
python3 theme_uploader.py ${{ vars.PLONE_URL }} ${{ secrets.PLONE_USER }} ${{ secrets.PLONE_PASSWORD }} | ||
for directory in ${{ needs.get-changed-directories.outputs.changed-directories }}; do | ||
echo python3 theme_uploader.py $(jq -r '.homepage' $directory/package.json) ${{ secrets.PLONE_USER }} ${{ secrets.PLONE_PASSWORD }} $directory | ||
done |
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