From e6a6529f6f1ac334af2a4edafe6602c10aecde8e Mon Sep 17 00:00:00 2001 From: jidicula Date: Mon, 31 Jan 2022 21:06:11 -0500 Subject: [PATCH] ci(docker): Add `latest` tag to workflow --- .github/workflows/publish.yml | 4 +++- README.md | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 936154e..d3e19f7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,9 @@ jobs: uses: docker/build-push-action@v2.8.0 with: push: true - tags: ${{ env.REGISTRY}}/jidicula/${{ env.IMAGE_NAME}}:${{ github.ref_name }} + tags: + - ${{ env.REGISTRY}}/jidicula/${{ env.IMAGE_NAME}}:${{ github.ref_name }} + - ${{ env.REGISTRY}}/jidicula/${{ env.IMAGE_NAME}}:latest labels: ${{ steps.meta.outputs.labels }} build-args: | "UBUNTU_VERSION=${{ matrix.version-pair.ubuntu }}" diff --git a/README.md b/README.md index 90cff2a..d3f321d 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ The full list of trusted issuers is available in the [VCI Directory](https://github.com/the-commons-project/vci-directory). +## Deploying + +You can deploy it via Docker CLI with `docker run ghcr.io/jidicula/vci-check:latest` + # vci-check/checker This repo also provides the Go package `checker`, containing types corresponding to the VCI directory and functions for working with them.