Skip to content

Commit

Permalink
Update Windows CI/PR
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Aug 5, 2024
1 parent 04f3bb9 commit a7631c3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/windows-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Windows PR

on: [pull_request]

jobs:
build:

runs-on: windows-2019

steps:
- uses: actions/checkout@v3
- name: Build
shell: cmd
run: .\src\scripts\build_ci.bat
- name: Artifact
uses: actions/upload-artifact@v4
with:
name: friction-ci-${{github.sha}}-windows-x64
path: build\output\*.7z
- uses: actions/comment@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
body: "Windows build available: ${{ steps.upload-artifact.outputs.artifact_url }}"
issue-number: ${{ github.event.pull_request.number }}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Windows
name: Windows CI

on: [push, pull_request]
on: [push]

jobs:
build:
Expand Down

0 comments on commit a7631c3

Please sign in to comment.