修复部分语法错误

This commit is contained in:
DLmaster
2024-09-06 19:31:58 +08:00
parent e61fbe6c69
commit 4d1fd7ea76

View File

@@ -67,10 +67,15 @@ jobs:
- name: Built with pyinstaller
run: |
pyinstaller -F --version-file res/info.txt -w --icon=res/AUTO_MAA.ico AUTO_MAA.py
- name: Read version
id: read_version
run: |
VERSION=$(head -n 1 更新说明.txt)
echo "::set-output name=version::$VERSION"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: "AUTO_MAA_$(head -n 1 更新说明.txt)"
name: AUTO_MAA_${{ steps.read_version.outputs.version }}
path: |
data/**/*
gui/**/*
@@ -102,7 +107,7 @@ jobs:
NAME="$(head -n 1 更新说明.txt)"
TAGNAME="$(head -n 1 更新说明.txt)"
CONTENT_MAIN="$(tail -n +2 更新说明.txt)"
CONTENT_TAIL="```本release通过GitHub Actions自动构建```"
CONTENT_TAIL=r"```本release通过GitHub Actions自动构建```"
CONTENT="$CONTENT_MAIN\n\n$CONTENT_TAIL"
gh release create "$TAGNAME" --target "main" --title "$NAME" --description "$CONTENT" --artifact artifacts/*.{zip,tar.xz}
env: