Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,13 @@ jobs:
- name: Install dependencies
run: uv sync --locked

- name: AppPack CLI
uses: apppackio/setup-apppack-cli@v1

- name: CLI docs
run: |
set -ex
CLI_DOWNLOAD_URL=$(curl -s https://api.github.com/repos/apppackio/apppack/releases/latest | jq -r '.assets[]|select(.name|contains("Linux_x86_64")).browser_download_url')
curl -sLo apppack.tar.gz "$CLI_DOWNLOAD_URL"
tar xvzf apppack.tar.gz
chmod +x apppack
./apppack docgen --directory src/command-line-reference
run: apppack docgen --directory src/command-line-reference
- name: Build
run: APPPACK_VERSION=$(./apppack version) make build
run: APPPACK_VERSION=$(apppack version) make build
- uses: actions/upload-artifact@v5
with:
path: public
Expand Down