rm pre-build command in build command

This commit is contained in:
neil 2022-10-14 11:45:09 +08:00
parent 34e7ddb3c0
commit c2ce7ea09f
3 changed files with 1 additions and 3 deletions

View file

@ -40,7 +40,7 @@ jobs:
uses: getneil/jq-action@v1 uses: getneil/jq-action@v1
id: version id: version
with: with:
cmd: './scripts/build-package-pages.sh src/data/packages.json src/content/packages' cmd: '.github/build-package-pages.sh src/data/packages.json src/content/packages'
- run: .github/mk-pantry-accessible.sh ${{ secrets.TEMP_JACOBS_GITHUB_PAT }} - run: .github/mk-pantry-accessible.sh ${{ secrets.TEMP_JACOBS_GITHUB_PAT }}

View file

@ -36,13 +36,11 @@ Install hugo yourself or use tea: `sh <(curl tea.xyz) hugo`.
|------------|---------| |------------|---------|
| gohugo.io | >=0.99 | | gohugo.io | >=0.99 |
# Build # Build
Builds a static, deployable version of the website. Builds a static, deployable version of the website.
```sh ```sh
.github/build-package-pages.sh src/data/packages.json src/content/packages
hugo --source src --destination ../public --minify hugo --source src --destination ../public --minify
``` ```