Add debug logging build
This commit is contained in:
parent
9d5514a976
commit
04f25150af
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue