fix(make): change test cmd #103
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: docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
static: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./docs | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# need entire history | |
fetch-depth: 0 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- name: generate site | |
run: | | |
go mod tidy | |
make ssg | |
- name: Set outputs | |
id: vars | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: publish to pgs | |
uses: picosh/pgs-action@main | |
with: | |
user: erock | |
key: ${{ secrets.PRIVATE_KEY }} | |
src: "./docs/public/" | |
project: "starfx-docs-${{ steps.vars.outputs.sha_short }}" | |
promote: "starfx-prod" | |
retain: "starfx-docs" | |
retain_num: 1 |