Skip to content

style: update smol #341

style: update smol

style: update smol #341

Workflow file for this run

name: static
on:
push:
branches:
- main
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# need entire history
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: 1.22
- name: install pgit
run: |
go install github.com/picosh/pgit@v1
- name: generate site
run: |
pgit \
--out ./public \
--label pico \
--desc "pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh" \
--clone-url "https://github.com/picosh/pico.git" \
--home-url "https://git.erock.io" \
--revs main
- name: Set outputs
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: publish to pgs
uses: picosh/pgs-action@v3
with:
user: pico
key: ${{ secrets.PRIVATE_KEY }}
src: './public/'
project: "git-pico-${{ steps.vars.outputs.sha_short }}"
promote: "git-pico"
retain: "git-pico-"