Remove import statement of non-existent ToolSelector component (#730) #62
This file contains hidden or 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: Build new theme and push to `build-blocks` branch. | |
| on: | |
| push: | |
| branches: | |
| - trunk | |
| paths: | |
| - public_html/wp-content/themes/wporg-pattern-directory-2024/** | |
| - public_html/wp-content/plugins/** | |
| # 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: | |
| packageManager: "npm" | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Remove build artifacts | |
| run: | | |
| rm -rf public_html/wp-content/themes/wporg-pattern-directory-2024/node_modules | |
| rm -rf public_html/wp-content/plugins/pattern-creator/node_modules | |
| rm -rf public_html/wp-content/plugins/pattern-directory/node_modules | |
| - name: Ignore .gitignore | |
| run: | | |
| git add public_html/wp-content/themes/wporg-pattern-directory-2024/* --force | |
| git add public_html/wp-content/plugins/pattern-*/build --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 }}' |