Skip to content

Commit

Permalink
Rename CI job & add Docker cache (#119)
Browse files Browse the repository at this point in the history
* Rename CI job

* Added cache
  • Loading branch information
Nyholm authored Nov 27, 2020
1 parent eeb7282 commit 4c0dcce
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Build docker images
run: layer=${{ matrix.layer }} make docker-images

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:

jobs:
publish:
name: Building images
name: Deploy images
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- uses: satackey/[email protected]
continue-on-error: true

- name: Get the version
id: get_version
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
with:
fetch-depth: 0

- uses: satackey/[email protected]
continue-on-error: true

- name: Download dependencies
run: |
composer update --no-interaction --prefer-dist --optimize-autoloader --prefer-stable
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /bin/bash
layer ?= *
parallel = $(if $(shell which parallel),true,false)
parallel ?= $(if $(shell which parallel),true,false)
resolve_php_versions = $(or $(php_versions),`jq -r '.php | join(" ")' ${1}/config.json`)
define generate_list
Expand Down

0 comments on commit 4c0dcce

Please sign in to comment.