From 9b28b95ad37d4e37f5a4dc8a5afe3be057ac7034 Mon Sep 17 00:00:00 2001 From: Dylan Date: Tue, 28 Nov 2023 11:49:06 -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 b39b89e..30ba7ce 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 "::set-output name=datetime::$(date +"%Y%m%d%H%M%S")" + run: echo "{datetime}={$(date +"%Y%m%d%H%M%S")}" >> $GITHUB_OUTPUT - name: Create Release id: create_release uses: actions/create-release@v1