Skip to content

Commit

Permalink
[ci-skip] Serve immediately (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleChest authored Aug 9, 2024
1 parent af01380 commit 1782bd4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,6 @@ jobs:
with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK }}
raw-data: ${{ env.discordmes }}
- name: Upload to cloud
if: "!contains(github.event.commits[0].message, '[release-skip]')"
continue-on-error: true
uses: wei/rclone@v1
env:
RCLONE_CONF: ${{ secrets.RCLONE_CONF }}
with:
args: copy ${{ env.jar }} FTP:${{ env.tag }} --contimeout 10s
- name: Push to API
if: "!contains(github.event.commits[0].message, '[release-skip]')"
continue-on-error: true
Expand All @@ -110,3 +102,11 @@ jobs:
secret_v2: ${{ secrets.API_V2_PUSH_TOKEN }}
tag: ${{ env.tag }}
run: sh scripts/PushToAPI.sh
- name: Upload to cloud
if: "!contains(github.event.commits[0].message, '[release-skip]')"
continue-on-error: true
uses: wei/rclone@v1
env:
RCLONE_CONF: ${{ secrets.RCLONE_CONF }}
with:
args: copy ${{ env.jar }} FTP:${{ env.tag }} --contimeout 10s --progress

0 comments on commit 1782bd4

Please sign in to comment.