Skip to content

Commit

Permalink
Update build-with-llvm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
netflexs authored Nov 14, 2024
1 parent 6902c2a commit df787d5
Showing 1 changed file with 20 additions and 16 deletions.
36 changes: 20 additions & 16 deletions .github/workflows/build-with-llvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ jobs:

steps:
- name: Notify Start of Build
uses: appleboy/telegram-action@v0.2.0
uses: xinthink/action[email protected]
with:
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
to: ${{ secrets.TELEGRAM_CHAT_ID }}
message: "Build Kernel job has started."
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }}
chatId: ${{ secrets.TELEGRAM_CHAT_ID }}
jobStatus: "Build Kernel job has started."
skipSuccess: false

- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -83,11 +84,12 @@ jobs:

- name: Notify Build Completion
if: always()
uses: appleboy/telegram-action@v0.2.0
uses: xinthink/action[email protected]
with:
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
to: ${{ secrets.TELEGRAM_CHAT_ID }}
message: "Build Kernel job completed with status ${{ job.status }}."
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }}
chatId: ${{ secrets.TELEGRAM_CHAT_ID }}
jobStatus: "Build Kernel job completed with status ${{ job.status }}."
skipSuccess: false

release:
name: Release Kernel & RootFS
Expand All @@ -96,11 +98,12 @@ jobs:

steps:
- name: Notify Start of Release
uses: appleboy/telegram-action@v0.2.0
uses: xinthink/action[email protected]
with:
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
to: ${{ secrets.TELEGRAM_CHAT_ID }}
message: "Release job has started."
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }}
chatId: ${{ secrets.TELEGRAM_CHAT_ID }}
jobStatus: "Release job has started."
skipSuccess: false

- name: Download Kernel Artifact
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -145,8 +148,9 @@ jobs:

- name: Notify Release Completion
if: always()
uses: appleboy/telegram-action@v0.2.0
uses: xinthink/action[email protected]
with:
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
to: ${{ secrets.TELEGRAM_CHAT_ID }}
message: "Release job completed with status ${{ job.status }}."
botToken: ${{ secrets.TELEGRAM_BOT_TOKEN }}
chatId: ${{ secrets.TELEGRAM_CHAT_ID }}
jobStatus: "Release job completed with status ${{ job.status }}."
skipSuccess: false

0 comments on commit df787d5

Please sign in to comment.