this looks promising
This commit is contained in:
parent
dc888960b3
commit
0f653f79f9
1 changed files with 11 additions and 1 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
|
@ -39,9 +39,19 @@ jobs:
|
||||||
- name: Upload the artifact
|
- name: Upload the artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: init
|
name: neovim-configuration
|
||||||
path: init.lua
|
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:
|
check-formatting:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue