From 635605b7926a27734d4a3ea427457b5a8649ce3f Mon Sep 17 00:00:00 2001 From: Srinivas Baride Date: Tue, 14 Mar 2023 12:29:13 +0530 Subject: [PATCH 1/2] Update README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d68e571..6a926c3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Sentinel dVPN Node +[![CodeQL](https://github.com/sentinel-official/dvpn-node/actions/workflows/codeql.yml/badge.svg)](https://github.com/sentinel-official/dvpn-node/actions/workflows/codeql.yml) +[![Docker](https://github.com/sentinel-official/dvpn-node/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/sentinel-official/dvpn-node/actions/workflows/docker-publish.yml) [![Go](https://img.shields.io/github/go-mod/go-version/sentinel-official/dvpn-node)]() [![GoReport](https://goreportcard.com/badge/github.com/sentinel-official/dvpn-node)](https://goreportcard.com/report/github.com/sentinel-official/dvpn-node) [![Licence](https://img.shields.io/github/license/sentinel-official/dvpn-node.svg)](https://github.com/sentinel-official/dvpn-node/blob/master/LICENSE) From a88d763519e10b3dfd9ba1a3ee81559f8ea622b8 Mon Sep 17 00:00:00 2001 From: Srinivas Baride Date: Tue, 14 Mar 2023 12:34:40 +0530 Subject: [PATCH 2/2] Fixed docker-publish workflow --- .github/workflows/docker-publish.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index b14b25c..d9cfac1 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -14,13 +14,6 @@ jobs: name: Build runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - platforms: - - linux/amd64 - - linux/arm64 - steps: - name: Checkout repository uses: actions/checkout@v3 @@ -46,6 +39,6 @@ jobs: with: context: . labels: ${{ steps.meta.outputs.labels }} - platforms: ${{ matrix.platforms }} + platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }}