forked from lgs2007m/Actions-OpenWrt
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -163,7 +163,19 @@ jobs: | |
make download -j$(nproc) | ||
find dl -size -1024c -exec ls -l {} \; | ||
find dl -size -1024c -exec rm -f {} \; | ||
- name: Bark通知 | ||
if: (!cancelled()) | ||
uses: Crownor/[email protected] | ||
with: | ||
key: ${{ secrets.BKEY }} | ||
title: 开始编译${{ env.OPENWRT_NAME }}-${{ env.DEVICE_NAME }}固件 | ||
#body: 开始编译${{ env.OPENWRT_NAME }}-${{ env.DEVICE_NAME }}固件 | ||
isArchive: 1 | ||
#url: https://yuanhaoji.com | ||
automaticallyCopy: 1 | ||
#copy: Content copied to clipboard | ||
|
||
- name: 编译固件 | ||
id: compile | ||
run: | | ||
|
@@ -242,3 +254,14 @@ jobs: | |
name: ${{ env.FILE_DATE }}-${{ env.OPENWRT_NAME }}-${{ env.DEVICE_NAME }} | ||
tag_name: ${{ steps.tag.outputs.release_tag }} | ||
body_path: release.txt | ||
- name: Bark通知 | ||
if: (!cancelled()) | ||
uses: Crownor/[email protected] | ||
with: | ||
key: ${{ secrets.BKEY }} | ||
title: 编译完成${{ env.OPENWRT_NAME }}-${{ env.DEVICE_NAME }}固件 | ||
#body: 开始编译${{ env.OPENWRT_NAME }}-${{ env.DEVICE_NAME }}固件 | ||
isArchive: 1 | ||
#url: https://yuanhaoji.com | ||
automaticallyCopy: 1 | ||
#copy: Content copied to clipboard |