mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-07 13:45:58 +01: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
|
- name: Build documentation packages
|
||||||
run: nix build .#${{ matrix.package }} --print-build-logs
|
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
|
- name: Upload doc artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: doc
|
name: "${{ matrix.package }}"
|
||||||
path: result/share/doc/neovim-flake/
|
path: result/share/doc/neovim-flake/
|
||||||
|
|
Loading…
Reference in a new issue