From 45676ff6709378f0457f1cfabc83dc7496a8b436 Mon Sep 17 00:00:00 2001 From: Oleg KASHANSKY Date: Wed, 10 Jul 2024 11:45:10 -0400 Subject: [PATCH] Wrong reference name --- .github/workflows/build_artifact.yml | 7 +++++-- .github/workflows/ci.yml | 3 ++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_artifact.yml b/.github/workflows/build_artifact.yml index ff1685d..a0c6c4f 100644 --- a/.github/workflows/build_artifact.yml +++ b/.github/workflows/build_artifact.yml @@ -21,8 +21,11 @@ jobs: env: {} steps: - - name: CI - uses: ./.github/workflows/ci.yml + - name: Checkout + uses: actions/checkout@v4 + + - name: Go + uses: ./.github/workflows/go - name: Build run: make clean lint prepare build pack ß diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac2486c..cab64de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,8 @@ jobs: env: {} steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 - name: Setup Go uses: actions/setup-go@v5