This repository was archived by the owner on Apr 3, 2025. It is now read-only.
Dynamic Atlas Population #41
This file contains hidden or 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: Upload Chinese Font Asset | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- 'assets/**' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Run build script | |
run: | | |
./build.ps1 | |
- name: Create Upload Release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file_glob: true | |
file: Release/*.7z | |
release_name: ${{ env.MY_TAG }} | |
tag: ${{ env.MY_TAG }} | |
overwrite: true |