Skip to content

Commit

Permalink
Add new block-based theme (#624)
Browse files Browse the repository at this point in the history
This block-based theme is a work-in-progress, aimed at quickly updating the look and feel of the pattern directory to match the new redesign framework, and use the components (blocks) created for filtering and displaying directory content.
  • Loading branch information
ryelle committed Mar 12, 2024
1 parent 5c0be80 commit c3478b3
Show file tree
Hide file tree
Showing 81 changed files with 3,861 additions and 3 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build-blocks.yml
@@ -0,0 +1,45 @@
name: Build new theme and push to `build-blocks` branch.

on:
push:
branches:
- trunk
paths:
- public_html/wp-content/themes/wporg-pattern-directory-2024/**
# Enable manually running action if necessary.
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: Setup
uses: WordPress/wporg-repo-tools/.github/actions/setup@trunk
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Remove build artifacts
run: |
rm -rf public_html/wp-content/themes/wporg-pattern-directory-2024/node_modules
- name: Ignore .gitignore
run: |
git add public_html/wp-content/themes/wporg-pattern-directory-2024/* --force
- name: Append build number to version
run: |
current_version=$(grep -oP 'Version: \K[0-9]+\.[0-9]+\.[0-9]+' public_html/wp-content/themes/wporg-pattern-directory-2024/style.css)
new_version="${current_version}-${GITHUB_SHA::7}"
sed -i "s/Version: $current_version/Version: $new_version/" public_html/wp-content/themes/wporg-pattern-directory-2024/style.css
- name: Commit and push
# Using a specific hash here instead of a tagged version, for risk mitigation, since this action modifies our repo.
uses: actions-js/push@a52398fac807b0c1e5f1492c969b477c8560a0ba # 1.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: build-blocks
force: true
message: 'Build: ${{ github.sha }}'
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -18,6 +18,7 @@
!/public_html/wp-content/plugins/pattern-directory
!/public_html/wp-content/plugins/pattern-translations
!/public_html/wp-content/themes/pattern-directory
!/public_html/wp-content/themes/wporg-pattern-directory-2024

# Ignore built files inside our plugins & themes.
/public_html/wp-content/themes/pattern-directory/css/*.css
Expand Down
8 changes: 5 additions & 3 deletions package.json
Expand Up @@ -14,11 +14,12 @@
"build:creator": "yarn workspace wporg-pattern-creator build",
"build:directory": "yarn workspace wporg-pattern-directory build",
"build:theme:old": "yarn workspace wporg-pattern-directory-theme build",
"build:theme": "yarn workspace wporg-pattern-directory-2022-theme build",
"build:theme": "yarn workspace wporg-pattern-directory-2024-theme build",
"start:creator": "yarn workspace wporg-pattern-creator start",
"start:directory": "yarn workspace wporg-pattern-directory start",
"start:theme:old": "yarn workspace wporg-pattern-directory-theme start",
"start:theme": "yarn workspace wporg-pattern-directory-2022-theme start",
"start:theme": "yarn workspace wporg-pattern-directory-2024-theme start",
"setup:tools": "echo \"Not used.\"",
"create": "./bin/index.sh",
"wp-env": "wp-env",
"lint:php": "composer run lint",
Expand All @@ -28,6 +29,7 @@
"workspaces": [
"public_html/wp-content/plugins/pattern-creator",
"public_html/wp-content/plugins/pattern-directory",
"public_html/wp-content/themes/pattern-directory"
"public_html/wp-content/themes/pattern-directory",
"public_html/wp-content/themes/wporg-pattern-directory-2024"
]
}

0 comments on commit c3478b3

Please sign in to comment.