Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
satackey authored Dec 14, 2020
1 parent 87c47b9 commit ffb96e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
# In this step, this action saves a list of existing images,
# the cache is created without them in the post run.
# It also restores the cache if it exists.
- uses: satackey/[email protected].10
- uses: satackey/[email protected].11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true

- run: docker-compose up --build

# Finally, "Post Run satackey/[email protected].10",
# Finally, "Post Run satackey/[email protected].11",
# which is the process of saving the cache, will be executed.
```

Expand All @@ -63,14 +63,14 @@ jobs:
# In this step, this action saves a list of existing images,
# the cache is created without them in the post run.
# It also restores the cache if it exists.
- uses: satackey/[email protected].10
- uses: satackey/[email protected].11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true

- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)

# Finally, "Post Run satackey/[email protected].10",
# Finally, "Post Run satackey/[email protected].11",
# which is the process of saving the cache, will be executed.
```

Expand All @@ -83,7 +83,7 @@ By default, the cache is separated by the workflow name.
You can also set the cache key manually, like the official [actions/cache](https://github.com/actions/cache#usage) action.

```yaml
- uses: satackey/[email protected].10
- uses: satackey/[email protected].11
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
with:
Expand Down

0 comments on commit ffb96e6

Please sign in to comment.