Compare commits

...

2 Commits

Author SHA1 Message Date
1be5eb5235 添加Taskfile
All checks were successful
代码更新通知 / update-server (push) Successful in 1s
2024-12-18 11:47:41 +08:00
4e4333d34b action下载方式更换回http 2024-12-18 11:45:33 +08:00
3 changed files with 15 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ jobs:
run: pwd && ls -ahl
- name: 发送通知
id: use-go-action
uses: git@git.aweoo.com:action/gotify@latest
uses: https://git.aweoo.com/action/gotify@latest
with:
username: foo
- name: Print Output

12
Taskfile.yml Normal file
View File

@@ -0,0 +1,12 @@
version: 3
tasks:
latest:
desc: 生成最新的版本
cmds:
- git tag -d "latest"
- git push origin :refs/tags/latest
- git tag -a "latest" -m "latest"
- git push origin --tags
- git push

View File

@@ -1,5 +1,5 @@
name: 'Simple Go Action'
description: 'A simple Gitea Action written in Go'
name: 'Gotify通知'
description: '发送Gotify通知'
inputs:
username:
description: 'The username to print'