• 周年纪念勋章活动已圆满结束,如有已购买但仍未申请的用户,可以通过对应勋章的下载链接申请~
资源图标

其他 [🛑停更] upload-minebbs - Github Release自动同步MineBBS v1.2.0

版权类型
原创
版权链接
#

注意:因为此工具是用于Github Action使用,所以有关此资源的任何Bug、疑问请提交到Issuse,请不要提交到反馈区

upload-minebbs

这是一个 GitHub Action,用于将 GitHub Release 自动同步到 MineBBS。

输入参数​

输入参数:

参数名描述是否必须默认值
minebbs_tokenMineBBS 的开发者 token
resource_id需要更新的资源 ID
use_extern_url是否使用外部链接false
custom_extern_url自定义外部下载链接地址(留空使用GitHub release地址)
upload_file需要上传的文件
update_title更新标题(留空默认使用Release标题)
update_description更新描述(留空默认使用Release内容)
update_version要更新的版本号(留空默认使用Tag)

注意:
use_extern_url 和 upload_file 必须选择一个作为更新方式,否则更新失败
upload_file 提供的文件不能大于10Mb(API接口限制)


API 允许上传的文件扩展名
.zip
.7z
rar
.tar
.pdf
.psd
.phar
.mcpack
.mcworld
.mcaddon
.jar
.apk
.exe
.js
.json
.dll
.py
.bnpx

输出参数​

参数名描述
file_keyMineBBS 返回的 file_key

使用示例​

YAML:
name: Sync Release to MineBBS

on:
    release:
        types: [created] # 当创建新的发布时触发

jobs:
    upload:
        runs-on: ubuntu-latest # 运行环境
        steps:
            - name: Checkout code
              uses: actions/checkout@v2 # 检出代码

            # 简单写法
            - name: Upload to MineBBS with upload_file
              uses: engsr6982/upload-minebbs@v1
              with:
                  minebbs_token: ${{ secrets.MINEBBS_TOKEN }} # 使用密钥
                  resource_id: "12345" # 资源 ID
                  upload_file: path/to/your/file.zip # 指定上传文件的路径

            # 使用外部链接
            - name: Upload to MineBBS with use_extern_url
              uses: engsr6982/upload-minebbs@v1
              with:
                  minebbs_token: ${{ secrets.MINEBBS_TOKEN }} # 使用密钥
                  resource_id: "12345" # 资源 ID
                  use_extern_url: true

            # 自定义写法
            - name: Upload to MineBBS with use_extern_url
              uses: engsr6982/upload-minebbs@v1
              with:
                  minebbs_token: ${{ secrets.MINEBBS_TOKEN }} # 使用密钥
                  resource_id: "12345" # 资源 ID
                  upload_file: path/to/your/file.zip # 指定上传文件的路径
                  update_title: "Github Actions Sync"
  • 喜欢
反馈: CnzwYYT
作者
engsr6982
下载
287
查看
372
首次发布
最后更新

评分

0.00 星 0 次评分

engsr6982 的其他资源

后退
顶部 底部