Updating build workflow #6

Merged
Fascinated merged 9 commits from development into master 2023-07-08 00:23:50 +00:00
Showing only changes of commit 59e116c19d - Show all commits

@ -11,11 +11,12 @@ jobs:
- name: Checkout - name: Checkout
uses: https://github.com/actions/checkout@v3 uses: https://github.com/actions/checkout@v3
- uses: actions/cache@v3 - name: Cache Docker
uses: actions/cache@v3
id: docker-cache id: docker-cache
with: with:
path: /usr/bin/docker path: /usr/bin/docker
key: ${{ runner.os }}-${{ hashFiles('**') }} key: ${{ runner.os }}-docker
- name: Install Docker - name: Install Docker
if: steps.docker-cache.outputs.cache-hit != 'true' if: steps.docker-cache.outputs.cache-hit != 'true'