Skip to content

security cleanup in github scripts #35

security cleanup in github scripts

security cleanup in github scripts #35

Workflow file for this run

name: Test signing
on:
pull_request:
push:
branches: [ master, develop ]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup MS Build
uses: microsoft/[email protected]
- name: Write code signing key
env:
CI_CODE_SIGN_KEY: ${{ secrets.CI_CODE_SIGN_KEY }}
run: |
./StrongName/WritePusherKey.ps1
- name: Restore dependencies
run: nuget restore pusher-dotnet-server.sln
- name: Build
run: msbuild /p:SignAssembly=true /p:deterministic=true /p:msbuildArchitecture=x64 /p:configuration=Release pusher-dotnet-server.sln
- name: Pack
run: msbuild /t:Pack /p:SignAssembly=true /p:configuration=release PusherServer/PusherServer.csproj