Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/peaceiris/hugo-theme-iris.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d0197d0e..62ba84eb 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -34,9 +34,9 @@ jobs:
- name: Set envs
id: envs
run: |
- echo "::set-output name=HUGO_VERSION::$(make get-hugo-version)"
- echo "::set-output name=GO_VERSION::$(make get-go-version)"
- echo "::set-output name=NODE_VERSION::$(cat .nvmrc)"
+ echo "HUGO_VERSION=$(make get-hugo-version)" | tee -a "${GITHUB_OUTPUT}"
+ echo "GO_VERSION=$(make get-go-version)" | tee -a "${GITHUB_OUTPUT}"
+ echo "NODE_VERSION=$(cat .nvmrc)" | tee -a "${GITHUB_OUTPUT}"
deploy:
needs: envs