Skip to content

Commit

Permalink
easy way create sing docker image for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Chizkiyahu committed Dec 30, 2024
1 parent 5666641 commit 74b102f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/signed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:
pull_request:
branches: [ main ]
workflow_dispatch:
inputs:
skip_delete:
description: "Skip the delete steps"
required: false
default: false
type: boolean

concurrency: testing
permissions:
Expand Down Expand Up @@ -49,6 +55,7 @@ jobs:
name: Delete package and signature
runs-on: ubuntu-latest
needs: add_temp_pkgs4
if: github.event_name != 'workflow_dispatch' || inputs.skip_delete == false
steps:
- uses: actions/checkout@v4
- uses: ./
Expand All @@ -71,6 +78,7 @@ jobs:
name: Delete all packages in repo
runs-on: ubuntu-latest
needs: delete_package_with_signature
if: github.event_name != 'workflow_dispatch' || inputs.skip_delete == false
steps:
- uses: actions/checkout@v4
- uses: ./
Expand Down

0 comments on commit 74b102f

Please sign in to comment.