You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
YAML
38 lines
1.0 KiB
YAML
name: Build and Upload Windows Package
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
date:
|
|
description: "Date suffix (optional)"
|
|
required: false
|
|
default: ""
|
|
suffix:
|
|
description: "Package name suffix (optional)"
|
|
required: false
|
|
default: ""
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
torch_cuda: [cu124, cu128]
|
|
env:
|
|
TORCH_CUDA: ${{ matrix.torch_cuda }}
|
|
MODELSCOPE_USERNAME: ${{ secrets.MODELSCOPE_USERNAME }}
|
|
MODELSCOPE_TOKEN: ${{ secrets.MODELSCOPE_TOKEN }}
|
|
HUGGINGFACE_USERNAME: ${{ secrets.HUGGINGFACE_USERNAME }}
|
|
HUGGINGFACE_TOKEN: ${{ secrets.HUGGINGFACE_TOKEN }}
|
|
DATE_SUFFIX: ${{ github.event.inputs.date }}
|
|
PKG_SUFFIX: ${{ github.event.inputs.suffix }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Build and Upload Script
|
|
shell: pwsh
|
|
run: |
|
|
Move-Item .github/build_windows_packages.ps1 ../build_windows_packages.ps1
|
|
../build_windows_packages.ps1 |