chore(docs): migrate to pnpm #220
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Build vib | |
run: | | |
go get ./... | |
make build | |
- name: Build plugins | |
run: | | |
go get ./... | |
make build-plugins | |
tar cvf plugins.tar.xz build/plugins | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Vib | |
path: | | |
build/vib | |
plugins.tar.xz |