Revert Revert Makefile but it works plz

This commit is contained in:
Bryce Hackel
2024-07-26 23:58:07 -07:00
parent 911425b9eb
commit 11bebd527e
3 changed files with 27 additions and 30 deletions

View File

@@ -47,10 +47,6 @@ on:
required: false
type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build YTLitePlus
@@ -234,7 +230,7 @@ jobs:
- name: Job Summary - Artifact Upload
if: ${{ inputs.upload_artifact }}
run: |
echo -e '### 📦 Artifact Upload\n\nThe artifact was uploaded successfully! [Scroll down](#artifacts) to view the artifact. Note that you must be signed in to GitHub to download it.' >> $GITHUB_STEP_SUMMARY
echo -e '### 📦 Artifact Upload\n\nThe artifact was uploaded successfully! Refresh and [scroll down](#artifacts) to view the artifact. Note that you must be signed in to GitHub to download it.' >> $GITHUB_STEP_SUMMARY
- name: Job Summary - Catbox Upload
if: ${{ inputs.catbox_upload}}

View File

@@ -1,3 +1,5 @@
# This is based on the example at https://github.com/marketplace/actions/delete-workflow-runs
name: Delete old workflow runs
on:
workflow_dispatch:
@@ -5,15 +7,15 @@ on:
days:
description: 'Days-worth of runs to keep for each workflow'
required: true
default: '7' # default value is "30"
default: '0'
minimum_runs:
description: 'Minimum runs to keep for each workflow'
required: true
default: '5' # default value is "6"
default: '0'
delete_workflow_pattern:
description: 'Name or filename of the workflow (if not set, all workflows are targeted)'
required: false
default: 'Build and Release YTLitePlus' # default value is ""
default: 'Build and Release YTLitePlus'
delete_workflow_by_state_pattern:
description: 'Filter workflows by state: active, deleted, disabled_fork, disabled_inactivity, disabled_manually'
required: true
@@ -40,6 +42,7 @@ on:
- success
dry_run:
description: 'Logs simulated changes, no deletions are performed'
type: boolean
required: false
jobs: