Give names to reusable workflows

This commit is contained in:
Pascal Roeleven
2023-03-06 12:33:01 +01:00
parent d53896f952
commit 9d50d41f6b
+10 -5
View File
@@ -109,7 +109,8 @@ jobs:
with:
submodules: true
- uses: ./.github/actions/preload-img-cache
- name: Preloading image cache
uses: ./.github/actions/preload-img-cache
with:
cache-key-prefix: ${{ needs.setup.outputs.img-key-prefix }}
device: ${{ matrix.device }}
@@ -129,7 +130,8 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/preload-tox-cache
- name: Preloading tox cache
uses: ./.github/actions/preload-tox-cache
with:
cache-key-prefix: ${{ needs.setup.outputs.tox-key-prefix }}
python-version: ${{ matrix.python }}
@@ -153,16 +155,19 @@ jobs:
with:
submodules: true
- uses: ./.github/actions/preload-magisk-cache
- name: Restoring Magisk cache
uses: ./.github/actions/preload-magisk-cache
with:
cache-key: ${{ needs.setup.outputs.magisk-key }}
- uses: ./.github/actions/preload-img-cache
- name: Restoring image cache
uses: ./.github/actions/preload-img-cache
with:
cache-key-prefix: ${{ needs.setup.outputs.img-key-prefix }}
device: ${{ matrix.device }}
- uses: ./.github/actions/preload-tox-cache
- name: Restoring tox cache
uses: ./.github/actions/preload-tox-cache
with:
cache-key-prefix: ${{ needs.setup.outputs.tox-key-prefix }}
python-version: ${{ matrix.python }}