Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use xc action for pipelines #68

Merged
merged 1 commit into from
Mar 17, 2023
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
hugo-version: '0.91.2'

- name: Build
run: cd doc && ./build.sh
uses: joerdav/[email protected]
with:
task: build-docs

- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.19
-
name: Tests
run: go test ./...

- name: Test
uses: joerdav/[email protected]
with:
task: test

-
name: Import GPG key
id: import_gpg
Expand Down Expand Up @@ -55,9 +58,10 @@ jobs:
uses: cachix/install-nix-action@v18
with:
nix_path: nixpkgs=channel:nixos-unstable
-
name: Generate flake file
run: ./update-nix.sh
- name: Update Flake
uses: joerdav/[email protected]
with:
task: update-nix
-
name: Add and Commit
run: |
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,13 @@ Directory: doc
```sh
hugo serve
```

## build-docs

Build production docs site.

Directory: doc

```sh
./build.sh
```