feat: slim down builtin types #30
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: Release | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
- name: Build | ||
run: | | ||
go get ./... | ||
make build | ||
- name: Build plugins | ||
run: | | ||
go get ./... | ||
make build-plugins | ||
tar cvf plugins.tar.xz build/plugins | ||
- name: Upload a Release Asset | ||
if: github.repository == 'Vanilla-OS/Vib' | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: | | ||
build/vib | ||
plugins.tar.xz |