diff --git a/.github/workflows/build-check.yaml b/.github/workflows/build-check.yaml index c1c9f256e..abef53c52 100644 --- a/.github/workflows/build-check.yaml +++ b/.github/workflows/build-check.yaml @@ -42,7 +42,7 @@ jobs: - name: Get current date id: date - run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - name: Create GitHub Release id: create_release diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index da0d8191a..48be32393 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -45,7 +45,7 @@ jobs: - name: Get current date id: date - run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV # Create a release on GitHub using GITHUB_TOKEN - name: Create GitHub Release @@ -75,4 +75,4 @@ jobs: - name: Clean Up run: | docker stop arch-container || echo 'Failed to stop the container.' - docker rm arch-container || echo 'Failed to remove the container.' + docker rm arch-container || echo 'Failed to remove the container.' \ No newline at end of file