Fix small problems for express and next #321
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
name: Deploy a preview of the docs | |
# Default to bash | |
defaults: | |
run: | |
shell: bash | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy_preview: | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
name: Deploy Preview | |
runs-on: ubuntu-latest | |
env: | |
HUGO_VERSION: 0.120.4 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- uses: Genez-io/genezio-github-action@v2 | |
with: | |
token: ${{ secrets.GENEZIO_TOKEN }} | |
- 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: Install Docs Node.js dependencies | |
run: npm ci | |
- name: Build Docs | |
run: npm run build | |
- name: Clone Repo https://github.com/Genez-io/genezio-landing-page/ | |
run: git clone https://github.com/Genez-io/genezio-landing-page/ | |
- name: Build with Hugo | |
env: | |
# For maximum backward compatibility with Hugo modules | |
HUGO_ENVIRONMENT: production | |
HUGO_ENV: production | |
run: | | |
cd genezio-landing-page | |
npm ci | |
hugo \ | |
--minify \ | |
--baseURL "https://genezio-landing-page-$STAGE.app.genez.io" | |
- name: Copy public folder | |
run: cp -r genezio-landing-page/public/ public/ | |
- name: Copy build files to /public/docs | |
run: | | |
mkdir -p public/docs/ | |
cp -r build/* public/docs/ | |
- name: Compute stage | |
run: echo "STAGE=pr-$(echo -n ${{ github.head_ref }} | shasum | head -c 8)" >> $GITHUB_ENV | |
- name: Deploy | |
run: genezio deploy --frontend --stage $STAGE | |
- uses: actions/github-script@v7 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: `👋 Your preview is ready! https://genezio-landing-page-${process.env["STAGE"]}.app.genez.io/docs/` | |
}) |