feat: add go dependency and enhance devbox environment variables

This commit is contained in:
2025-01-07 11:16:47 -05:00
parent f8974b3d1f
commit 79706e32e3
33 changed files with 2 additions and 7250 deletions
+2 -1
View File
@@ -5,7 +5,8 @@
"cargo@latest",
"uv@latest",
"bun@latest",
"doppler@latest"
"doppler@latest",
"go-task@latest"
],
"env": {
"PATH": "$HOME/.cargo/bin:$HOME/go/bin:$HOME/.local/bin:$HOME/.bun/bin:$PATH",
-22
View File
@@ -42,25 +42,3 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/onsonr/sonr:latest
docs-push:
runs-on: ubuntu-latest
name: Publish Docs
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: cd docs && mkdocs gh-deploy --force