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:
authorShohei Ueda <30958501+peaceiris@users.noreply.github.com>2022-10-24 18:52:08 +0300
committerGitHub <noreply@github.com>2022-10-24 18:52:08 +0300
commit63e81081cb19f49c110103f5e8a48d5f805328c4 (patch)
tree26bc0c5b239dd93045be3e11538bb9166138f48e
parent74c135c84404c0efd48828345be1f6c56ff4886c (diff)
ci: use GITHUB_OUTPUT
-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