From 116c8df206da9bf6cfa00f43d1d69d82d9d90633 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 19 Mar 2024 17:09:45 +0100 Subject: [PATCH] Slashes --- .github/workflows/build.yml | 8 ++++---- .github/workflows/validate.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b7d0312..522b3c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,16 +12,16 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install Prerequisites - run: .\build\vsts-prerequisites.ps1 + run: ./build/vsts-prerequisites.ps1 shell: powershell - name: Build - run: .\build\vsts-build.ps1 -SkipPublish -LocalRepo + run: ./build/vsts-build.ps1 -SkipPublish -LocalRepo shell: powershell - name: Validate - run: .\build\vsts-validate.ps1 + run: ./build/vsts-validate.ps1 shell: powershell - name: Publish - run: .\build\vsts-build.ps1 -ApiKey $env:APIKEY -Preview:$${{ github.ref == 'develop' }} + run: ./build/vsts-build.ps1 -ApiKey $env:APIKEY -Preview:$${{ github.ref == 'develop' }} shell: powershell env: APIKEY: ${{ secrets.NUGETAPIKEY }} \ No newline at end of file diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5e6ed48..b446ade 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -8,11 +8,11 @@ jobs: steps: - uses: actions/checkout@v1 - name: Install Prerequisites - run: .\build\vsts-prerequisites.ps1 + run: ./build/vsts-prerequisites.ps1 shell: powershell - name: Build - run: .\build\vsts-build.ps1 -SkipPublish -LocalRepo + run: ./build/vsts-build.ps1 -SkipPublish -LocalRepo shell: powershell - name: Validate - run: .\build\vsts-validate.ps1 + run: ./build/vsts-validate.ps1 shell: powershell \ No newline at end of file