diff --git a/.github/workflows/production-build.yml b/.github/workflows/production-build.yml index b9c655f6a..5837bb74a 100644 --- a/.github/workflows/production-build.yml +++ b/.github/workflows/production-build.yml @@ -23,6 +23,25 @@ jobs: id: version run: | echo "VERSION=$(docker run --rm -v "$(pwd):/app" -w /app php:8.2-alpine3.16 php bootstrap/getVersion.php)"|xargs >> $GITHUB_OUTPUT + - name: Get Composer Cache Directory + id: composer-cache + run: | + echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + - name: Cache apt packages + id: apt-cache + uses: actions/cache@v3 + with: + path: | + /var/cache/apt/archives/*.deb + /var/lib/apt/lists/* + key: ${{ runner.os }}-apt + - name: Cache composer packages + uses: actions/cache@v3 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-composer- - name: Build image and push to registry uses: docker/build-push-action@v4 with: