diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 9e370708b..14a8247d8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -178,7 +178,8 @@ jobs: - name: Get current date if: always() id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H_%M_%S')" #no colons allowed for artifacts + run: | + echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT #no colons allowed for artifacts - uses: actions/upload-artifact@v3 if: always() diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1f1ec5a53..7e87cb5ab 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -110,7 +110,9 @@ jobs: - name: Get current date if: always() id: date - run: echo "::set-output name=date::$(date +'%Y-%m-%dT%H_%M_%S')" #no colons allowed for artifacts + #no colons allowed for artifacts + run: | + echo "date=$(date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 if: always() @@ -159,8 +161,7 @@ jobs: run: | export is_alpha=0 if [[ "$(ls -lh dist/)" == *"a1"* ]]; then export is_alpha=1; fi - echo "::set-output name=is_alpha::$is_alpha" - + echo "is_alpha=$is_alpha" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: name: dist