Skip to content

Commit 780800e

Browse files
Update luarocks workflow to trigger on tag only, not release
## Details There is no need to run the luarocks workflow on both tag creation and release creation given how I currently create releases. They are essentially just copies of each other. Other minor changes: - Move local ignored assets to temp directory - Add a link to luarocks markdown.nvim asset
1 parent d8f692d commit 780800e

File tree

8 files changed

+23
-16
lines changed

8 files changed

+23
-16
lines changed

.github/workflows/luarocks.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
name: Luarocks
22

33
on:
4+
pull_request: # Tests packaging on PR
5+
workflow_dispatch:
46
push:
57
tags:
68
- '*'
7-
release:
8-
types:
9-
- created
10-
pull_request: # Tests packaging on PR
11-
workflow_dispatch:
129

1310
jobs:
1411
luarocks-upload:
1512
runs-on: ubuntu-22.04
1613
steps:
14+
- name: Checkout
1715
- uses: actions/checkout@v4
1816
with:
1917
fetch-depth: 0 # Required to get the tags
18+
2019
- name: Get Version
2120
run: echo "LUAROCKS_VERSION=$(git describe --abbrev=0 --tags)" >> $GITHUB_ENV
2221

.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
1-
*.cast
21
*.gif
3-
*.json
4-
medium.md
5-
large.md
6-
test.md
7-
test.log
2+
/temp/

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@
1010
[726c85c](https://github.com/MeanderingProgrammer/markdown.nvim/commit/726c85cb9cc6d7d9c85af6ab093e1ee53b5e3c82).
1111
- Ultimately removed in TODO
1212

13+
### Bug Fixes
14+
15+
- Block code rendering with transparent background [#102](https://github.com/MeanderingProgrammer/markdown.nvim/pull/102)
16+
17+
### Collaborator Shoutouts
18+
19+
- @scottmckendry
20+
1321
## 5.0.0 (2024-07-27)
1422

1523
### ⚠ BREAKING CHANGES

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,12 @@ Plugin to improve viewing Markdown files in Neovim
7575

7676
## rocks.nvim
7777

78-
```vimscript
78+
```vim
7979
:Rocks install markdown.nvim
8080
```
8181

82+
- [luarocks.org](https://luarocks.org/modules/MeanderingProgrammer/markdown.nvim)
83+
8284
## packer.nvim
8385

8486
```lua

doc/render-markdown.txt

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*render-markdown.txt* For 0.10.0 Last change: 2024 July 27
1+
*render-markdown.txt* For 0.10.0 Last change: 2024 July 29
22

33
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*
@@ -103,10 +103,12 @@ LAZY.NVIM *render-markdown-install-lazy.nvim*
103103

104104
ROCKS.NVIM *render-markdown-install-rocks.nvim*
105105

106-
>vimscript
106+
>vim
107107
:Rocks install markdown.nvim
108108
<
109109

110+
- luarocks.org <https://luarocks.org/modules/MeanderingProgrammer/markdown.nvim>
111+
110112

111113
PACKER.NVIM *render-markdown-install-packer.nvim*
112114

doc/todo.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
- Add a performance test suite to measure improvements, relative value on
66
same hardware should still be useful.
77
- Figure out how to display the many configuration options & impact
8+
- Potentially change LuaRocks icon dependency to [mini.icons](https://luarocks.org/modules/neorocks/mini.icons)

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ cat-log:
5252
cat ~/.local/state/nvim/render-markdown.log
5353

5454
gen-medium:
55-
just gen-file "1000" > medium.md
55+
just gen-file "1000" > temp/medium.md
5656

5757
gen-large:
58-
just gen-file "100000" > large.md
58+
just gen-file "100000" > temp/large.md
5959

6060
[private]
6161
gen-file lines:

temp/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)