Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

Commit

Permalink
Merge branch 'win32-master' of https://github.com/rounk-ctrl/Winver i…
Browse files Browse the repository at this point in the history
…nto win32-master
  • Loading branch information
rounk-ctrl committed Jun 14, 2022
2 parents 8024322 + b2ac727 commit 7f824f5
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Winver

on:
push:
branches: [ "win32-master" ]
pull_request:
branches: [ "win32-master" ]

permissions:
contents: read

jobs:
build:
strategy:
matrix:
configuration: [Release]
platform: [x64]
runs-on: windows-latest
env:
SOLUTION_FILE_PATH: .
RELEASE_DIR: ${{ matrix.configuration }}
EXE_NAME: Winver-${{ matrix.platform }}.exe
BEXE_NAME: Winver-${{ matrix.platform }}
ARCH: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1.1

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /p:ReleaseDirectory=..\$env:RELEASE_DIR /p:TargetName=${{ env.BEXE_NAME }} ${{env.SOLUTION_FILE_PATH}}
- name: Upload x64
uses: actions/upload-artifact@v3.0.0
with:
# Artifact name
name: ${{ env.EXE_NAME }}
# A file, directory or wildcard pattern that describes what to upload (ik its shit)
path: x64\Release\Winver-x64.exe
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
[![CodeFactor](https://www.codefactor.io/repository/github/rounk-ctrl/winver/badge)](https://www.codefactor.io/repository/github/rounk-ctrl/winver)

win32 real

### Languages added:
- Polish
- Greek
- German

0 comments on commit 7f824f5

Please sign in to comment.