From 28f615c6ef327c2821cb2d0b7ce26981780dc861 Mon Sep 17 00:00:00 2001 From: senyoltw Date: Sat, 21 Nov 2020 22:36:33 +0900 Subject: [PATCH] set-env is disabled by github actions (#265) --- .github/workflows/agent.yml | 2 +- .github/workflows/javagateway.yml | 2 +- .github/workflows/proxy.yml | 2 +- .github/workflows/server.yml | 2 +- .github/workflows/web.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/agent.yml b/.github/workflows/agent.yml index 7213772bf..6246b6052 100644 --- a/.github/workflows/agent.yml +++ b/.github/workflows/agent.yml @@ -61,7 +61,7 @@ jobs: - name: Build the collection run: | collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) - echo "::set-env name=COLLECTION_FILE::$collection_file" + echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV - name: Install the collection run: ansible-galaxy collection install $COLLECTION_FILE diff --git a/.github/workflows/javagateway.yml b/.github/workflows/javagateway.yml index d25c536fc..ac3d52bd4 100644 --- a/.github/workflows/javagateway.yml +++ b/.github/workflows/javagateway.yml @@ -42,7 +42,7 @@ jobs: - name: Build the collection run: | collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) - echo "::set-env name=COLLECTION_FILE::$collection_file" + echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV - name: Install the collection run: ansible-galaxy collection install $COLLECTION_FILE diff --git a/.github/workflows/proxy.yml b/.github/workflows/proxy.yml index c1b7e709d..ee95c2ee7 100644 --- a/.github/workflows/proxy.yml +++ b/.github/workflows/proxy.yml @@ -55,7 +55,7 @@ jobs: - name: Build the collection run: | collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) - echo "::set-env name=COLLECTION_FILE::$collection_file" + echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV - name: Install the collection run: ansible-galaxy collection install $COLLECTION_FILE diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 10e99ec05..57a573c73 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -55,7 +55,7 @@ jobs: - name: Build the collection run: | collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) - echo "::set-env name=COLLECTION_FILE::$collection_file" + echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV - name: Install the collection run: ansible-galaxy collection install $COLLECTION_FILE diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 5b50cc0fd..66058188f 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -54,7 +54,7 @@ jobs: - name: Build the collection run: | collection_file=$( basename $(ansible-galaxy collection build -f | awk -F" " '{print $NF}')) - echo "::set-env name=COLLECTION_FILE::$collection_file" + echo "COLLECTION_FILE=$collection_file" >> $GITHUB_ENV - name: Install the collection run: ansible-galaxy collection install $COLLECTION_FILE