Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Slashes #2

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading