-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from yriveiro/fix-docgen
fix: docgen workflow action
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,10 @@ jobs: | |
- os: ubuntu-latest | ||
url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: date +%F > todays-date | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Todays Data | ||
run: date +%F > todays-date | ||
- name: Restore cache for today's nightly. | ||
uses: actions/cache@v3 | ||
with: | ||
|
@@ -35,7 +37,7 @@ jobs: | |
git clone --depth 1 https://github.com/mfussenegger/nvim-dap ~/.local/share/nvim/site/pack/vendor/start/nvim-dap | ||
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start | ||
- name: Tree Sitter Cli | ||
- uses: actions-rs/[email protected] | ||
uses: actions-rs/[email protected] | ||
with: | ||
crate: tree-sitter-cli | ||
version: latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters