From e03bedcc0e48c371a3f089a219a942cb0894839a Mon Sep 17 00:00:00 2001 From: Raluca Pelin Date: Wed, 31 Aug 2022 12:36:41 +0300 Subject: [PATCH] Remove downloaded artifact file after using it --- .github/workflows/screener-build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/screener-build.yml b/.github/workflows/screener-build.yml index d6e3a649e6a6c2..bf1a4df9db43e0 100644 --- a/.github/workflows/screener-build.yml +++ b/.github/workflows/screener-build.yml @@ -94,6 +94,10 @@ jobs: echo "$line" >> $GITHUB_ENV done < "$input_file" + - name: Delete environment file + run: | + rm environment + - uses: actions/setup-node@v3 with: node-version: 14.18.1 @@ -158,6 +162,10 @@ jobs: echo "$line" >> $GITHUB_ENV done < "$input_file" + - name: Delete environment file + run: | + rm environment + - uses: actions/setup-node@v3 with: node-version: 14.18.1 @@ -220,6 +228,10 @@ jobs: echo "$line" >> $GITHUB_ENV done < "$input_file" + - name: Delete environment file + run: | + rm environment + - uses: actions/setup-node@v3 with: node-version: 14.18.1