From 84f574c4b6787d402035a3acc80ee9829103953d Mon Sep 17 00:00:00 2001 From: Sandro Dias Pinto Vitenti Date: Mon, 24 Oct 2022 18:09:56 -0300 Subject: [PATCH] Fixed cache date variable 'today'. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57df254b8..181900f7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: use-only-tar-bz2: true - name: Cache date id: get-date - run: echo "name={today::$(/bin/date -u '+%Y%m%d')}" >> $GITHUB_OUTPUT + run: echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT shell: bash - name: Cache Conda env uses: actions/cache@v2