diff --git a/.github/workflows/extension.yml b/.github/workflows/extension.yml index 77fc814..c0a4149 100644 --- a/.github/workflows/extension.yml +++ b/.github/workflows/extension.yml @@ -45,11 +45,11 @@ jobs: - shell: bash run: | - cd $file_path && fVar=$(find -type f -name 'archive/*.rbz'); + fVar=$(find -type f -name 'archive/*.rbz'); echo $fVar # output is like ./file-1.2.0-SNAPSHOT.txt fT=${fVar:2} # removing first two characters'./' echo "$fT" # output is file-1.2.0-SNAPSHOT.txt - echo $fVar >> $GITHUB_OUTPUT + echo File: $fVar >> $GITHUB_OUTPUT - name: Upload a Build Artifact uses: actions/upload-artifact@v4.0.0