UUP Download Windows #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UUP Download Windows | |
on: | |
workflow_dispatch: | |
inputs: | |
file-name: | |
description: 'upload the zip package to this repo.' | |
required: true | |
default: '' | |
jobs: | |
Download: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: Unzip | |
run: | | |
./7z x ${{ github.event.inputs.file-name }} -aoa | |
- name: run | |
run: | | |
copy get_aria2.ps1 ./files | |
./uup_download_windows.cmd | |
tree /f | |
./convert-UUP.cmd | |
- name: Upload | |
uses: actions/upload-artifact@main | |
with: | |
name: ISO | |
path: ./*.ISO | |
- name: Upload to WeTransfer | |
run: | | |
mkdir isos | |
./7z a ./isos/isos.zip *.ISO -v1G | |
./transfer wet -s ./isos/ | |