Supported a new Packrun Latest Summary Data endpoint #134
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
# Action Name | |
name: GitHub Pages | |
# Controls when the action will run | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
# Workflow Jobs | |
jobs: | |
# Deploy Job | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1 - Checkout Code | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Step 2 - Setup NodeJS | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
# Step 3 - Install NPM Packages | |
- name: Install NPM Packages | |
run: npm ci | |
# Step 4 - Build the Docs | |
- name: Build Docs | |
run: npm run docs | |
# Step 5 - Deploy to GitHub Pages | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs | |
commit_message: 'docs: Deploy to GitHub Pages' |