mirror of
https://github.com/AuxXxilium/arc-configs.git
synced 2024-11-23 23:00:52 +07:00
85311e2ecd
Some checks failed
Clean Configs / build (release) Failing after 25s
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
28 lines
706 B
YAML
28 lines
706 B
YAML
name: Clean Configs
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@main
|
|
|
|
- name: Init Env
|
|
run: |
|
|
git config --global user.email "info@auxxxilium.tech"
|
|
git config --global user.name "AuxXxilium"
|
|
sudo timedatectl set-timezone "Europe/Berlin"
|
|
|
|
- name: Delete releases and workflows runs
|
|
uses: ophub/delete-releases-workflows@main
|
|
with:
|
|
delete_releases: true
|
|
releases_keep_latest: 1
|
|
delete_workflows: true
|
|
delete_tags: true
|
|
workflows_keep_day: 1
|
|
gh_token: ${{ secrets.GITHUB_TOKEN }} |