-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c7b1cc
commit 78762ed
Showing
4 changed files
with
31 additions
and
2 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
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
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# - name: Install Hugo CLI | ||
# run: | | ||
# wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \ | ||
# && sudo dpkg -i ${{ runner.temp }}/hugo.deb | ||
# - name: Install Dart Sass | ||
# run: sudo snap install dart-sass | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# with: | ||
# submodules: recursive | ||
# fetch-depth: 0 | ||
# - name: download dependecies | ||
# run : ./scripts/sync-data.sh | ||
# - name: Setup Pages | ||
# id: pages | ||
# uses: actions/configure-pages@v3 | ||
# - name: Install Node.js dependencies | ||
# run: "npm i" | ||
# - name: Build with Hugo | ||
# env: | ||
# # For maximum backward compatibility with Hugo modules | ||
# HUGO_ENVIRONMENT: production | ||
# HUGO_ENV: production | ||
# run: | | ||
# hugo \ | ||
# --gc \ | ||
# --minify \ | ||
# --baseURL "${{ steps.pages.outputs.base_url }}/" |