Skip to content

Commit

Permalink
fix path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pomdtr committed Nov 21, 2023
1 parent 8612580 commit 4a5ddc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
with:
go-version: 1.21
- name: Generate CLI docs
run: go run ./cmd/sunbeam/main.go docs > website/frontend/docs/reference/cli.md
run: go run . docs > website/docs/reference/cli.md
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache-dependency-path: website/frontend/package-lock.json
- name: Install Node dependencies
working-directory: website/frontend
working-directory: website
run: npm ci
- name: Build website
working-directory: website/frontend
working-directory: website
run: npm run build
- name: Deploy to Deno Deploy
uses: denoland/deployctl@v1
Expand Down
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ before:
- go mod tidy
- rm -rf completions
- mkdir completions
- sh -c 'go run ./cmd/sunbeam/main.go completion "bash" >./completions/{{ .ProjectName }}.bash'
- sh -c 'go run ./cmd/sunbeam/main.go completion "zsh" >./completions/{{ .ProjectName }}.zsh'
- sh -c 'go run ./cmd/sunbeam/main.go completion "fish" >./completions/{{ .ProjectName }}.fish'
- sh -c 'go run . completion "bash" >./completions/{{ .ProjectName }}.bash'
- sh -c 'go run . completion "zsh" >./completions/{{ .ProjectName }}.zsh'
- sh -c 'go run . completion "fish" >./completions/{{ .ProjectName }}.fish'
changelog:
skip: true
builds:
- main: ./cmd/sunbeam/main.go
- main: .
binary: sunbeam
ldflags:
- s -w
Expand Down

0 comments on commit 4a5ddc9

Please sign in to comment.