diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-10-22 13:30:32 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-03 22:16:45 +0100 |
| commit | 9ad239690fe6b151afe2f43c2858d68a2b877e1d (patch) | |
| tree | 9c682b2397224a9dec6cdcc22b49c27fbcdd91c8 /.github/actions/cache | |
| parent | 310896f6aa1d1242d531c30d2cffa20ff8cb635f (diff) | |
| download | rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.tar.gz rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.tar.bz2 rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.zip | |
ci: various fixes
- adjust reviewers
- add workflow as cache key
- install attr only when tesitng
- fix s390x workflow by checking out the merge PR instead of master
Diffstat (limited to '.github/actions/cache')
| -rw-r--r-- | .github/actions/cache/action.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/actions/cache/action.yml b/.github/actions/cache/action.yml index c019ac52ac..d668c7a7cc 100644 --- a/.github/actions/cache/action.yml +++ b/.github/actions/cache/action.yml @@ -3,6 +3,9 @@ description: "This action caches neovim dependencies" runs: using: "composite" steps: + - run: echo "CACHE_KEY=${{ github.workflow }}" >> $GITHUB_ENV + shell: bash + - run: echo "CACHE_KEY=${{ github.job }}" >> $GITHUB_ENV shell: bash |