From 0a3fe165051ede043d4e710d6d0430efe9e4c3af Mon Sep 17 00:00:00 2001 From: Dylan Date: Tue, 28 Nov 2023 11:57:05 -0500 Subject: [PATCH] Replace set-output command with GITHUB_OUTPUT environment file --- .github/workflows/DeployPages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/DeployPages.yml b/.github/workflows/DeployPages.yml index 30ba7ce..40a92c9 100644 --- a/.github/workflows/DeployPages.yml +++ b/.github/workflows/DeployPages.yml @@ -85,7 +85,7 @@ jobs: path: scale - name: Set current datetime id: set_datetime - run: echo "{datetime}={$(date +"%Y%m%d%H%M%S")}" >> $GITHUB_OUTPUT + run: echo "datetime=$(date +"%Y%m%d%H%M%S")" >> "$GITHUB_OUTPUT" - name: Create Release id: create_release uses: actions/create-release@v1