Build Plugin PDF #8
Workflow file for this run
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: Build Plugin PDF | |
on: | |
workflow_dispatch: | |
inputs: | |
plugin: | |
description: "Plugin name (e.g. basic-auth)" | |
required: true | |
version: | |
description: "Version (leave empty for latest)" | |
required: false | |
env: | |
VITE_PORTAL_API_URL: ${{ vars.VITE_PORTAL_API_URL }} | |
jobs: | |
pdf: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
# Configure Ruby to build Jekyll site | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: .ruby-version | |
- name: Ruby gem cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Bundle Setup | |
run: bundle config path ${{ github.workspace }}/vendor/bundle | |
- name: Bundle Install | |
run: bundle install --jobs 4 --retry 3 | |
- name: Install foreman | |
run: gem install foreman | |
# Configure Node to build assets | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "16" | |
- name: Cache node modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
- run: npm ci | |
- name: Set date | |
run: | | |
echo "TODAY=$(date +'%Y-%m-%d')" >> $GITHUB_ENV | |
# Build the PDF | |
- name: Generate PDF for Plugin "${{ github.event.inputs.plugin }}" | |
env: | |
KONG_PLUGIN_NAME: "${{ github.event.inputs.plugin }}" | |
KONG_PLUGIN_VERSION: "${{ github.event.inputs.version }}" | |
run: | | |
npm install -g wait-on netlify-cli | |
netlify dev & wait-on http://localhost:8888 | |
cd pdf-generation | |
npm ci | |
node run.js | |
# Upload build PDFs | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: "pdfs-plugin-${{ env.TODAY }}" | |
path: pdf-generation/pdfs/*.pdf |