fix gha set-output command (#14312)

This commit is contained in:
Sergejs Kostjucenko
2023-06-09 16:17:35 +03:00
committed by GitHub
parent 41735589ee
commit ee895b3986
+2 -2
View File
@@ -13,8 +13,8 @@ jobs:
- name: Get the tags by date
id: tags
run: |
echo "::set-output name=new::$(date +'monthly-%Y-%m')"
echo "::set-output name=old::$(date -d'1 month ago' +'monthly-%Y-%m')"
echo "new=$(date +'monthly-%Y-%m')" >> $GITHUB_OUTPUT
echo "old=$(date -d'1 month ago' +'monthly-%Y-%m')" >> $GITHUB_OUTPUT
- name: Checkout branch "master"
uses: actions/checkout@v3
with: