Update ExecuteReleaseAsset
to execute IHazAssetRelease
and build …
#13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------------------------------ | |
# Build.yml | |
# ------------------------------------------------------------------------------ | |
name: Build | |
on: | |
push: | |
pull_request: | |
branches-ignore: | |
- master | |
- main | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run './build/build.cmd' | |
run: ./build/build.cmd --root ./build | |
env: | |
GitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
NugetApiUrl: ${{ secrets.NUGET_API_URL }} | |
NugetApiKey: ${{ secrets.NUGET_API_KEY }} | |
# SignFile: ${{ secrets.SIGN_FILE }} | |
# SignPassword: ${{ secrets.SIGN_PASSWORD }} | |
SignFile: ${{ secrets.SIGN_FILE_AZURE }} | |
SignPassword: ${{ secrets.SIGN_PASSWORD_AZURE }} |