-
-
Notifications
You must be signed in to change notification settings - Fork 636
30 lines (23 loc) · 773 Bytes
/
HEVC.yml
File metadata and controls
30 lines (23 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Download HEVC
on:
workflow_dispatch:
permissions:
contents: write
jobs:
download-hevc:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Download HEVC package
run: |
. "Scripts\HEVC.ps1"
- name: Commit and push changes
run: |
# Save Microsoft.HEVCVideoExtension_8wekyb3d8bbwe.appx to HEVC folder
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add HEVC/Microsoft.HEVCVideoExtension_8wekyb3d8bbwe.appx
git add HEVC/HEVC_version.txt
git commit -m "Update Microsoft.HEVCVideoExtension_8wekyb3d8bbwe.appx"
git push