Disable upload workflows to ftp forge

This commit is contained in:
Chris H
2025-02-25 22:07:42 -05:00
parent e2322ee7ef
commit f935706d22
3 changed files with 7 additions and 7 deletions

View File

@@ -123,3 +123,10 @@ jobs:
artifacts: izpack/* artifacts: izpack/*
allowUpdates: true allowUpdates: true
removeArtifacts: true removeArtifacts: true
- name: Send failure notification to Discord
if: failure() # This step runs only if the job fails
run: |
curl -X POST -H "Content-Type: application/json" \
-d "{\"content\": \"🔴 Snapshot Build Failed in branch: \`${{ github.ref_name }}\` by \`${{ github.actor }}\`.\nCheck logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}\"}" \
${{ secrets.DISCORD_AUTOMATION_WEBHOOK }}

View File

@@ -13,10 +13,6 @@ on:
# description: 'Upload the completed Android package' # description: 'Upload the completed Android package'
# required: false # required: false
# default: true # default: true
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '00 19 * * *'
jobs: jobs:
build: build:

View File

@@ -8,9 +8,6 @@ on:
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false required: false
default: false default: false
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '30 18 * * *'
jobs: jobs:
build: build: