Add debug logging build

This commit is contained in:
Bernd Schoolmann 2024-02-18 01:34:54 +01:00 committed by GitHub
parent 9d5514a976
commit 04f25150af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,6 +10,23 @@ env:
GO_VERSION: '1.20'
jobs:
build_linux_x86_64_debug:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Install libfido2-dev
run: sudo apt-get install -y libfido2-dev
- name: Build Debug
run: go build -tags debuglogging -o goldwarden_linux_x86_64_debug -v .
- uses: actions/upload-artifact@v3
with:
name: goldwarden_linux_x86_64_debug
path: ./goldwarden_linux_x86_64_debug
build_linux_x86_64:
runs-on: ubuntu-latest
steps: