Skip to content

Bump actions/checkout from 3 to 4 #39

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #39

Workflow file for this run

name: CI_build
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
max-parallel: 6
matrix:
build_configuration: [Release, Debug]
build_platform: [x64, Win32]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1
- name: MSBuild of plugin dll
working-directory: .\
run: msbuild QuickText.vcxproj /m /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" /p:PlatformToolset="v142" /target:zip
env:
ZIPCMD: 7z a -tzip
- name: Archive
uses: actions/upload-artifact@v3
with:
name: QuickText-${{ matrix.build_configuration }}-${{ matrix.build_platform }}
path: ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText.dll
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/') && matrix.build_configuration == 'Release'
with:
body: ${{ github.event.commits[0].message }}
files: ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText-v${{ github.ref_name }}-${{ matrix.build_platform }}.zip
- name: SHA256
if: startsWith(github.ref, 'refs/tags/') && matrix.build_configuration == 'Release'
run: sha256sum.exe ${{ matrix.build_configuration }}\${{ matrix.build_platform }}\QuickText-v${{ github.ref_name }}-${{ matrix.build_platform }}.zip