Skip to content

Commit

Permalink
Create .github/workflows/main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksoid1978 authored Feb 13, 2024
1 parent 473d1f4 commit 9bff85c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build VideoRenderer

on:
push:
paths-ignore:
- .github/workflows/main.yml
- Readme.md
- history.txt
pull_request:
paths-ignore:
- .github/workflows/main.yml
- Readme.md
- history.txt

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive

- name: Build VideoRenderer
run: |
.\\build_mpcvr.cmd NoWait
shell: pwsh

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: "MPC Video Renderer"
path: _bin/MpcVideoRenderer*.zip
compression-level: 0

0 comments on commit 9bff85c

Please sign in to comment.