Skip to content

update changelog

update changelog #35

Workflow file for this run

name: Release
env:
TZ: Asia/Shanghai
on:
push:
paths-ignore:
- "README.md"
- "CHANGELOG.md"
- ".gitignore"
- "steamDESC.txt"
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run integration script
run: ./main.bat
- name: Upload generated files
uses: actions/upload-artifact@v4
with:
name: font-artifact
path: |
*.zip
nightly-release:
permissions: write-all
needs: build
runs-on: windows-latest
if: startsWith(github.ref, 'refs/tags/') != true
steps:
- uses: actions/download-artifact@v4
with:
name: font-artifact
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "nightly-release"
prerelease: true
title: "Action Build"
files: |
*.zip
release:
permissions: write-all
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: font-artifact
- name: Release Action
uses: softprops/action-gh-release@v2
with:
files: |
*.zip
body_path: CHANGELOG.md
publish:
runs-on: windows-2019
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: font-artifact
- name: Unzip mod
run: |
mkdir output
7z.exe x *.zip -ooutput
shell: cmd
- name: Get steamcmd
run: |
dir
curl https://steamcdn-a.akamaihd.net/client/installer/steamcmd.zip --output steamcmd.zip
7z.exe e steamcmd.zip -osteamcmd
dir
shell: cmd
- name: Checkout steamcmd config
uses: actions/checkout@v4
with:
repository: Cccc-owo/steamcmd
token: ${{ secrets.STEAMCMD_TOKEN }}
path: steamcmd/config
- name: Upload Steam workshop
run: |
cd steamcmd
dir
steamcmd.exe -dev -textmode -ignoredxsupportcfg +login %STEAM_LOGIN_NAME% +workshop_build_item ..\resources\GongWenKaiTi.vdf +workshop_build_item ..\resources\GuDianMingChaoTi.vdf +workshop_build_item ..\resources\KangXiZiDianTi.vdf +workshop_build_item ..\resources\LiShu.vdf +workshop_build_item ..\resources\Source-Han-Serif.vdf +quit
env:
STEAM_LOGIN_NAME: ${{ secrets.STEAM_LOGIN_NAME }}
STEAM_LOGIN_PASSWORD: ${{ secrets.STEAM_LOGIN_PASSWORD }}
shell: cmd
continue-on-error: true