Просмотр исходного кода

fix invalid syntax of GITHUB_OUTPUT

Yuki Takei 3 лет назад
Родитель
Сommit
6e9e86199d
2 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      .github/workflows/release.yml
  2. 3 3
      .github/workflows/reusable-app-prod.yml

+ 1 - 1
.github/workflows/release.yml

@@ -140,7 +140,7 @@ jobs:
       id: suffix
       run: |
         [[ ${{ matrix.flavor }} = "nocdn" ]] && suffix="-nocdn" || suffix=""
-        echo "SUFFIX=$suffix"" >> $GITHUB_OUTPUT
+        echo "SUFFIX=$suffix" >> $GITHUB_OUTPUT
 
     - name: Docker meta
       id: meta

+ 3 - 3
.github/workflows/reusable-app-prod.yml

@@ -129,8 +129,8 @@ jobs:
     - name: Get Date
       id: get-date
       run: |
-        echo "dateYmdHM=$(/bin/date -u "+%Y%m%d%H%M")"" >> $GITHUB_OUTPUT
-        echo "dateYm=$(/bin/date -u "+%Y%m")"" >> $GITHUB_OUTPUT
+        echo "dateYmdHM=$(/bin/date -u "+%Y%m%d%H%M")" >> $GITHUB_OUTPUT
+        echo "dateYm=$(/bin/date -u "+%Y%m")" >> $GITHUB_OUTPUT
 
     - name: Cache/Restore node_modules (not reused)
       id: cache-dependencies
@@ -250,7 +250,7 @@ jobs:
       id: determine-spec-exp
       run: |
         SPEC=`node bin/github-actions/generate-cypress-spec-arg.js --prefix="test/cypress/integration/" --suffix="-*/**" "${{ matrix.spec-group }}"`
-        echo "value=$SPEC"" >> $GITHUB_OUTPUT
+        echo "value=$SPEC" >> $GITHUB_OUTPUT
 
     - name: Copy dotenv file for ci
       working-directory: ./packages/app