XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension

【DLL】XFE各类拓展是一个C#的DLL库,旨在优化C#代码中常用语句的使用,并提供更简洁的访问方式,同时提供Xunit测试框架,快速搭建服务器/客户端,免费ChatGPTAPI接口,免费通讯服务器,XFE下载器,新增格式等

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEExtension

优化CI工作流

60ff68d
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

1 个文件 +3 -4
Modified .github/workflows/publish-packages.yml +3 -4
@@ -119,18 +119,17 @@ jobs:
119 119 }
120 120
121 121 - name: Create GitHub Release
122 if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
123 122 uses: softprops/action-gh-release@v2
124 123 with:
125 tag_name: ${{ github.ref_name }}
126 name: XFEExtension.NetCore ${{ github.ref_name }}
124 tag_name: ${{ env.PACKAGE_VERSION }}
125 name: V${{ env.PACKAGE_VERSION }}
127 126 generate_release_notes: true
128 127 append_body: true
129 128 body: |
130 129 ## Package feeds
131 130
132 131 - NuGet.org
133 - GitHub Packages: `https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json`
132 - GitHub Packages
134 133 files: ${{ env.PACKAGE_OUTPUT_DIR }}/*.nupkg
135 134 fail_on_unmatched_files: true
136 135 prerelease: ${{ contains(env.PACKAGE_VERSION, '-') }}