Skip to content

Update github/codeql-action digest to 689fdc5 #73

Update github/codeql-action digest to 689fdc5

Update github/codeql-action digest to 689fdc5 #73

Workflow file for this run

name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: setup-msbuild
uses: microsoft/setup-msbuild@1ff57057b5cfdc39105cd07a01d78e9b0ea0c14c # v1.3
with:
msbuild-architecture: x64
- run: |
msbuild /t:restore /p:configuration=release /p:platform="Any CPU" ppt-diffmerge.sln
name: restore
- run: |
msbuild /t:build /p:configuration=release /p:platform="Any CPU" ppt-diffmerge.sln
name: build
- run: |
cd ./ppt-diffmerge-tool/bin/Release/
7z a ppt-diffmerge.zip -tzip
name: Zip Artifact
- run: |
gh release delete latest --yes --cleanup-tag
git tag latest HEAD --force
git push origin --tags --force
gh release create latest --generate-notes --prerelease --latest --title "Development Build" ./ppt-diffmerge-tool/bin/Release/ppt-diffmerge.zip
name: Create Release
env:
GH_TOKEN: ${{ github.token }}
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request'