使用Python3实现Gitee码云自动化发布

仓库信息

https://gitee.com/liumou_site/ip

实现代码

python 复制代码
import os

import requests
from loguru import logger


def gitee(ver, message, prerelease: bool = False):
	"""
    在 Gitee 上创建发布版本

    :param ver: 版本号
    :param message: 发布信息
    :param prerelease: 是否为预发布版本,默认为 False
    :return: 无
    """
	# 配置信息
	GITEE_ACCESS_TOKEN = os.getenv('GITEE_ACCESS_TOKEN')
	if GITEE_ACCESS_TOKEN is None:
		print("请设置环境变量 GITEE_ACCESS_TOKEN")
		exit(1)
	logger.debug("GITEE_ACCESS_TOKEN: " + GITEE_ACCESS_TOKEN)
	OWNER = 'liumou_site'
	REPO = 'ip'
	TAG_NAME = f'v{ver}'
	NAME = f'Version {ver}'

	# 构建请求 URL
	url = f'https://gitee.com/api/v5/repos/{OWNER}/{REPO}/releases'


	# 构建请求体
	data = {
		'tag_name': TAG_NAME,
		'name': NAME,
		'body': message,
		'target_commitish': 'master',
		'owner': OWNER,
		'repo': REPO,
		'prerelease': prerelease,
		'access_token': GITEE_ACCESS_TOKEN
	}

	# 发送 POST 请求
	response = requests.post(url, data=data)

	# 检查响应
	if response.status_code == 201:
		logger.info('Release created successfully!')
		logger.info(response.json())
	else:
		logger.error(f'Failed to create release: {response.status_code}')
		logger.error(response.text)
		logger.error(response.request)
		exit(2)


if __name__ == '__main__':
	gitee(ver='1.0.9', message='master', prerelease=False)

效果

powershell 复制代码
"D:\Program Files\Python313\python.exe" D:\code\gitee\go\ip\gitee.py 
2024-11-21 10:36:57.933 | DEBUG    | __main__:gitee:21 - GITEE_ACCESS_TOKEN: 7ac..........
2024-11-21 10:36:58.406 | INFO     | __main__:gitee:48 - Release created successfully!
2024-11-21 10:36:58.407 | INFO     | __main__:gitee:49 - {'id': 450710, 'tag_name': 'v1.0.9', 'target_commitish': '28a5383f0cc7103546c805100b4a0d68e40547c8', 'prerelease': False, 'name': 'Version 1.0.9', 'body': 'master', 'author': {'id': 1785140, 'login': 'liumou_site', 'name': '坐公交也用券', 'avatar_url': 'https://foruda.gitee.com/avatar/1673661977951995067/1785140_liumou_site_1673661977.png', 'url': 'https://gitee.com/api/v5/users/liumou_site', 'html_url': 'https://gitee.com/liumou_site', 'remark': '', 'followers_url': 'https://gitee.com/api/v5/users/liumou_site/followers', 'following_url': 'https://gitee.com/api/v5/users/liumou_site/following_url{/other_user}', 'gists_url': 'https://gitee.com/api/v5/users/liumou_site/gists{/gist_id}', 'starred_url': 'https://gitee.com/api/v5/users/liumou_site/starred{/owner}{/repo}', 'subscriptions_url': 'https://gitee.com/api/v5/users/liumou_site/subscriptions', 'organizations_url': 'https://gitee.com/api/v5/users/liumou_site/orgs', 'repos_url': 'https://gitee.com/api/v5/users/liumou_site/repos', 'events_url': 'https://gitee.com/api/v5/users/liumou_site/events{/privacy}', 'received_events_url': 'https://gitee.com/api/v5/users/liumou_site/received_events', 'type': 'User'}, 'created_at': '2024-11-21T10:36:58+08:00', 'assets': [{'browser_download_url': 'https://gitee.com/liumou_site/ip/archive/refs/tags/v1.0.9.zip', 'name': 'v1.0.9.zip'}, {'browser_download_url': 'https://gitee.com/liumou_site/ip/archive/refs/tags/v1.0.9.tar.gz', 'name': 'v1.0.9.tar.gz'}]}

进程已结束,退出代码0

官方接口

Gitee接口

相关推荐
九河云3 小时前
数字化转型中的网络安全风险与零信任架构实践
运维·科技·安全·web安全·架构
守城小轩4 小时前
轻量级HTTP&Socks代理GOST: Linux编译安装
运维·网络·网络协议
奋斗的蛋黄6 小时前
网络卡顿运维排查方案:从客户端到服务器的全链路处理
运维·服务器·网络
wanhengidc7 小时前
云手机搬砖 尤弥尔传奇自动化操作
运维·服务器·arm开发·安全·智能手机·自动化
wow_DG8 小时前
【运维✨】云服务器公网 IP 迷雾:为什么本机看不到那个地址?
运维·服务器·tcp/ip
yuanManGan8 小时前
走进Linux的世界:初识操作系统(Operator System)
android·linux·运维
i_am_a_div_日积月累_8 小时前
jenkins打包报错
运维·rust·jenkins·jenkins打包报错
GIOTTO情8 小时前
舆情处置的自动化实践:基于Infoseek舆情系统的技术解析与落地指南
运维·自动化·linq
Thexhy9 小时前
在 CentOS 7 的 Linux 系统中配置 NFS
linux·运维·学习·centos
曹天骄9 小时前
Let’s Encrypt 证书申请与多服务器 HTTPS 配置指南
运维·服务器·https