From 5b6a8c41f0fe27db850f1f27a0a8e0fc494cbdf1 Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Fri, 24 May 2024 22:56:25 +0800 Subject: [PATCH 1/3] chore: update readme with links to examples --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 324125c..27a3604 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ jobs: # ... build and release steps here ``` +For a fully-functional example, see the [release workflow of this repository](https://github.com/smlx/ccv/blob/main/.github/workflows/release.yaml). + ### Example: read-only You can also check the tag your PR will generate by running with `write-tag: false`. Note that the permissions on this job are read-only. @@ -102,6 +104,8 @@ new-tag=true new-tag-version=v0.16.0 ``` +For a fully-functional example, see the [build workflow of this repository](https://github.com/smlx/ccv/blob/main/.github/workflows/build.yaml). + ## Use locally Download the latest [release](https://github.com/smlx/ccv/releases) on github, or: From a7454356adc1daafce266397bf2116fa67d1d21f Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Fri, 24 May 2024 23:12:40 +0800 Subject: [PATCH 2/3] fix: remove redundant snippet from build workflow --- .github/workflows/build.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8e99d48..f62ad76 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -10,10 +10,6 @@ jobs: contents: read packages: write runs-on: ubuntu-latest - strategy: - matrix: - binary: - - go-cli-github steps: - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 with: From 0c10862be2cf9392c26c32892f41cb7a8516cf3b Mon Sep 17 00:00:00 2001 From: Scott Leggett Date: Fri, 24 May 2024 23:19:33 +0800 Subject: [PATCH 3/3] chore: add branding to action --- action.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yaml b/action.yaml index 75bf5fe..8003983 100644 --- a/action.yaml +++ b/action.yaml @@ -15,3 +15,6 @@ runs: image: Dockerfile args: - ${{ inputs.write-tag }} +branding: + icon: tag + color: blue