From c03b55984d6c4dd9617cebcc8858209d2451def5 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 18 Oct 2020 09:16:18 +0200 Subject: [PATCH] - add back checkout to have configuration available --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f5f5f0..e7e3e55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,8 @@ jobs: - name: Echo Configuration without Checkout Changelog run: echo "${{steps.without_checkout.outputs.changelog}}" - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v2 with: fetch-depth: 0 # Checkout full depth so tags can be discovered automatically if not specified @@ -65,6 +66,9 @@ jobs: if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Prepare Tag if: startsWith(github.ref, 'refs/tags/') id: tag_version