Skip to content
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.

Commit

Permalink
fixed deprecated use of 'set-env' in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mammo0 committed Oct 14, 2020
1 parent 981c62e commit 5c766cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ jobs:
sd_image_name=$(basename "$SD_IMAGE_FILE")
emmc_image_name=$(basename "$EMMC_IMAGE_FILE")
emmc_boot0_name=$(basename "$EMMC_BOOT0_FILE")
echo "::set-env name=SD_IMAGE_NAME::$sd_image_name"
echo "::set-env name=EMMC_IMAGE_NAME::$emmc_image_name"
echo "::set-env name=EMMC_BOOT0_NAME::$emmc_boot0_name"
echo "SD_IMAGE_NAME=$sd_image_name" >> $GITHUB_ENV
echo "EMMC_IMAGE_NAME=$emmc_image_name" >> $GITHUB_ENV
echo "EMMC_BOOT0_NAME=$emmc_boot0_name" >> $GITHUB_ENV
- name: Create GH Release
id: create_release
Expand Down

0 comments on commit 5c766cf

Please sign in to comment.