mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
CI: name doc artifacts after their respective packages
This commit is contained in:
parent
980d497660
commit
3377ebdbfd
1 changed files with 6 additions and 1 deletions
7
.github/workflows/check-docs.yml
vendored
7
.github/workflows/check-docs.yml
vendored
|
@ -39,8 +39,13 @@ jobs:
|
|||
- name: Build documentation packages
|
||||
run: nix build .#${{ matrix.package }} --print-build-logs
|
||||
|
||||
- name: Get current date
|
||||
id: get-date
|
||||
# output format: 2023-12-22-120000
|
||||
run: echo "date=$(date +'%Y-%m-%d-%H%M%S')" >> ${GITHUB_OUTPUT}
|
||||
|
||||
- name: Upload doc artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: doc
|
||||
name: "${{ matrix.package }}"
|
||||
path: result/share/doc/neovim-flake/
|
||||
|
|
Loading…
Reference in a new issue