Skip to content

Commit

Permalink
fix(action): build action syntax error
Browse files Browse the repository at this point in the history
referencing everything from /home/runner
  • Loading branch information
roeybenarieh authored Dec 9, 2023
1 parent afaf6ef commit f0c4efd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_nvim_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
neovim: true

- name: compress nvim generated folders
run: tar -czf build.tar.gz -C ~ .config/nvim/ .local/share/nvim
run: cd /home/runner/; tar -czf build.tar.gz -C ~ .config/nvim/ .local/share/nvim

- name: artifact nvim generated folders
uses: actions/upload-artifact@v3
with:
name: generated nvim folders
path: ./build.tar.gz
path: /home/runner/build.tar.gz
retentions-days: 365

0 comments on commit f0c4efd

Please sign in to comment.