diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index e81d18b7693..0ebbfda7fc2 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -46,7 +46,7 @@ jobs: settings.gradle gradle.properties **/gradle/** - Scripts/** + scripts/** build-java-8: runs-on: ubuntu-latest diff --git a/.github/workflows/preview-and-release.yml b/.github/workflows/preview-and-release.yml index ea041e211a9..b9c42ffd24a 100644 --- a/.github/workflows/preview-and-release.yml +++ b/.github/workflows/preview-and-release.yml @@ -40,13 +40,13 @@ jobs: - name: Easy detect-secrets uses: RobertFischer/detect-secrets-action@v2.0.0 - name: Download File - run: .\Scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH + run: .\scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH shell: pwsh env: ENCODED_VALUE: ${{ secrets.LOCAL_PROPERTIES }} OUTPUT_PATH: '.\local.properties' - name: Download File - run: .\Scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH + run: .\scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH shell: pwsh env: ENCODED_VALUE: ${{ secrets.SECRING_GPG }} @@ -73,13 +73,13 @@ jobs: - name: Easy detect-secrets uses: RobertFischer/detect-secrets-action@v2.0.0 - name: Download File - run: .\Scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH + run: .\scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH shell: pwsh env: ENCODED_VALUE: ${{ secrets.LOCAL_PROPERTIES }} OUTPUT_PATH: '.\local.properties' - name: Download File - run: .\Scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH + run: .\scripts\decodeAndWrite.ps1 -encodedValue $env:ENCODED_VALUE -outputPath $env:OUTPUT_PATH shell: pwsh env: ENCODED_VALUE: ${{ secrets.SECRING_GPG }} @@ -102,7 +102,7 @@ jobs: settings.gradle gradle.properties **/gradle/** - Scripts/** + scripts/** - name: GitHub Release uses: softprops/action-gh-release@v2 with: diff --git a/Scripts/decodeAndWrite.ps1 b/scripts/decodeAndWrite.ps1 similarity index 100% rename from Scripts/decodeAndWrite.ps1 rename to scripts/decodeAndWrite.ps1 diff --git a/Scripts/getLatestVersion.ps1 b/scripts/getLatestVersion.ps1 similarity index 100% rename from Scripts/getLatestVersion.ps1 rename to scripts/getLatestVersion.ps1