Skip to content

Release

Release #12

Workflow file for this run

name: Release
on:
workflow_dispatch:
jobs:
BlankSpace:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: commit
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git checkout --orphan Clearhistory
git branch -D main
git checkout --orphan main
git branch -D Clearhistory
git add .
git commit -m "Release"
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
git push -f -u origin main
- name: Cleanup Workflow
uses: Mattraks/delete-workflow-runs@main
with:
retain_days: 0
keep_minimum_runs: 0