Add minimal feature build
This commit is contained in:
parent
16bfa32203
commit
1bb1cff483
1 changed files with 9 additions and 3 deletions
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
|
@ -23,13 +23,19 @@ jobs:
|
||||||
- name: Install gio dependencies
|
- name: Install gio dependencies
|
||||||
run: sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
|
run: sudo apt-get install -y gcc pkg-config libwayland-dev libx11-dev libx11-xcb-dev libxkbcommon-x11-dev libgles2-mesa-dev libegl1-mesa-dev libffi-dev libxcursor-dev libvulkan-dev
|
||||||
|
|
||||||
- name: Build with Autofill
|
- name: Build with All features
|
||||||
run: go build -tags autofill -o goldwarden -v .
|
run: go build -o goldwarden -v .
|
||||||
|
|
||||||
- uses: AButler/upload-release-assets@v2.0
|
- uses: AButler/upload-release-assets@v2.0
|
||||||
with:
|
with:
|
||||||
files: './goldwarden'
|
files: './goldwarden'
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build minimal featureset
|
||||||
|
run: go build -tags nofido2 -tags noautofill -o goldwarden-minimal -v .
|
||||||
|
- uses: AButler/upload-release-assets@v2.0
|
||||||
|
with:
|
||||||
|
files: './goldwarden-minimal'
|
||||||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Validate ArchLinux PKGBUILD
|
- name: Validate ArchLinux PKGBUILD
|
||||||
uses: hapakaien/archlinux-package-action@v2
|
uses: hapakaien/archlinux-package-action@v2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue