Skip to content

Commit

Permalink
Merge pull request #2 from nyanhp/feature/shinynewbuild
Browse files Browse the repository at this point in the history
Slashes
  • Loading branch information
nyanhp authored Mar 19, 2024
2 parents 902cae3 + 116c8df commit 2124cba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit 2124cba

Please sign in to comment.