Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Add action for troubleshooting #4
  • Loading branch information
jmcker authored Apr 20, 2021
1 parent 49ddcd2 commit 3037744
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: GStreamer Windows

on:
workflow_dispatch:

jobs:
build:
runs-on: windows-2016

steps:

# Examine the baseline
- name: Before
shell: powershell
run: |
${ENV:Path}.Split(';');
whoami;
Get-ChildItem env;
# Install GStreamer
- name: Install GStreamer
run: |
choco install gstreamer
# Dump log
- name: Check path
shell: powershell
run: |
refreshenv;
${ENV:Path}.Split(';');
whoami;
Get-Content -Path C:\ProgramData\chocolatey\logs\chocolatey.log;

0 comments on commit 3037744

Please sign in to comment.