You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
777 B
30 lines
777 B
name: Download HEVC
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
download-and-save:
|
|
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
|
|
|