build-daily #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-daily | |
on: | |
push: | |
tags: | |
- 'continuous' | |
# 凌晨12点半执行 | |
schedule: | |
- cron: '30 16 * * *' | |
create: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
run: echo ${{ github.sha }} > Release.txt | |
- name: Test | |
run: cat Release.txt | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }} | |
files: | | |
Release.txt |