mirror of
https://github.com/iFargle/headscale-webui.git
synced 2026-03-23 22:54:45 +01:00
Testing github actions
This commit is contained in:
17
.github/workflows/clean-untagged-builds.yml
vendored
Normal file
17
.github/workflows/clean-untagged-builds.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Remove old package versions
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
package_name:
|
||||
description: 'The name of the package to delete'
|
||||
required: true
|
||||
|
||||
jobs:
|
||||
remove-package-versions:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: purge packages
|
||||
uses: dylanratcliffe/delete-untagged-containers@main
|
||||
with:
|
||||
package_name: ${{ github.event.inputs.package_name }}
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Reference in New Issue
Block a user