From 990b7df2935a146ad9676ec623f8c23485898cee Mon Sep 17 00:00:00 2001 From: zyy17 Date: Tue, 20 Aug 2024 16:37:36 +0800 Subject: [PATCH] fix: missing image tag when releasing (#169) --- .github/workflows/dev-build.yaml | 2 +- .github/workflows/develop.yaml | 2 +- .github/workflows/pr-title-checker.yaml | 4 ++-- .github/workflows/release.yaml | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dev-build.yaml b/.github/workflows/dev-build.yaml index 1b6611cf..bd0a2d2e 100644 --- a/.github/workflows/dev-build.yaml +++ b/.github/workflows/dev-build.yaml @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: dev-build +name: Dev Build on: workflow_dispatch: # Allows you to run this workflow manually. diff --git a/.github/workflows/develop.yaml b/.github/workflows/develop.yaml index 7d23d98b..2ab65f10 100644 --- a/.github/workflows/develop.yaml +++ b/.github/workflows/develop.yaml @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: develop +name: Develop on: pull_request: diff --git a/.github/workflows/pr-title-checker.yaml b/.github/workflows/pr-title-checker.yaml index e9c5f879..46cae102 100644 --- a/.github/workflows/pr-title-checker.yaml +++ b/.github/workflows/pr-title-checker.yaml @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: check-pr-title +name: Check PR Title on: pull_request_target: @@ -24,7 +24,7 @@ on: - unlabeled jobs: - check: + check-pr-title: runs-on: ubuntu-22.04 steps: - uses: thehanimo/pr-title-checker@v1.4.1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2e56bcf9..71f131d6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -name: release +name: Release on: push: @@ -63,6 +63,7 @@ jobs: shell: bash run: | VERSION=${{ github.ref_name }} + echo "VERSION=${VERSION}" >> $GITHUB_ENV - name: Build and push operator uses: docker/build-push-action@v5