mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-03 01:17:41 +08:00
新增:定时发布 每夜构建 版本(北京时间:23:30)
This commit is contained in:
parent
a5977bfd3b
commit
c43ed813e4
60
.github/workflows/Nightly_Build.yml
vendored
Normal file
60
.github/workflows/Nightly_Build.yml
vendored
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
name: Nightly Build
|
||||||
|
|
||||||
|
# 触发器
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '30 15 * * *' #每天在国际标准时间14点(北京时间+8,即 23:30)
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
root_sol:
|
||||||
|
description: "Nightly Build Title"
|
||||||
|
required: true
|
||||||
|
default: "SmsForwarder"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
# if: github.event.repository.owner.id == github.event.sender.id
|
||||||
|
|
||||||
|
# 设置jdk环境为11
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: set up JDK 11
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 11
|
||||||
|
# ref: dev
|
||||||
|
# 获取打包秘钥
|
||||||
|
- name: Checkout Android Keystore
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: pppscn/keystore
|
||||||
|
token: ${{ secrets.TOKEN }} # 连接仓库的token,需要单独配置
|
||||||
|
path: keystore # 仓库的根目录名
|
||||||
|
# 打包release
|
||||||
|
- name: Build with Gradle
|
||||||
|
run: bash ./gradlew assembleRelease
|
||||||
|
# 创建release
|
||||||
|
- name: Create Release
|
||||||
|
id: create_release
|
||||||
|
uses: actions/create-release@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
#GitHub 会自动创建 GITHUB_TOKEN 密码以在工作流程中使用。
|
||||||
|
#您可以使用 GITHUB_TOKEN 在工作流程运行中进行身份验证。
|
||||||
|
#当您启用 GitHub Actions 时,GitHub 在您的仓库中安装 GitHub 应用程序。
|
||||||
|
#GITHUB_TOKEN 密码是一种 GitHub 应用程序 安装访问令牌。
|
||||||
|
#您可以使用安装访问令牌代表仓库中安装的 GitHub 应用程序 进行身份验证。
|
||||||
|
#令牌的权限仅限于包含您的工作流程的仓库。 更多信息请参阅“GITHUB_TOKEN 的权限”。
|
||||||
|
#在每个作业开始之前, GitHub 将为作业提取安装访问令牌。 令牌在作业完成后过期。
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: SmsForwarder ${{ github.ref }}
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
# 存档打包的文件
|
||||||
|
- name: Archive production artifacts
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
path: app/build/outputs/apk/release/*.apk
|
@ -1,4 +1,4 @@
|
|||||||
name: Build SmsForwarder
|
name: Release
|
||||||
|
|
||||||
# 触发器
|
# 触发器
|
||||||
on:
|
on:
|
||||||
@ -11,7 +11,7 @@ on:
|
|||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
root_sol:
|
root_sol:
|
||||||
description: "Release title"
|
description: "Release Title"
|
||||||
required: true
|
required: true
|
||||||
default: "SmsForwarder"
|
default: "SmsForwarder"
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user