diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3e9c32c..ca33e0c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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: