From 0f653f79f9c7e0f5c2814d727e31a77d6d377aba Mon Sep 17 00:00:00 2001 From: osbm Date: Sun, 23 Mar 2025 01:04:57 +0300 Subject: [PATCH] this looks promising --- .github/workflows/ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 639eecd..ba0eb15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,9 +39,19 @@ jobs: - name: Upload the artifact uses: actions/upload-artifact@v4 with: - name: init + name: neovim-configuration path: init.lua + - name: Publish the init.lua to an orphan github branch + run: | + git config --global user.name github-actions + git config --global user.email github-actions@github.com + git checkout --orphan init-lua + git rm -rf . + git add init.lua + git commit -m "Publish init.lua" + git push origin init-lua + check-formatting: runs-on: ubuntu-24.04 steps: