-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a populate-caches workflow to pre-populate GH Action caches
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
################################################### | ||
# Install and cache the dependencies when `master` is pushed | ||
# for other workflows to use. | ||
# | ||
# Most workflows will reuse the same cached | ||
# dependencies as the last release. Having master populate the | ||
# cache makes them accessible to all pull requests and deployments. | ||
# | ||
# Variables must be set in the calling repository. | ||
# https://github.com/lipemat/go-live-update-urls/settings/variables/actions | ||
# @see The reusable workflow for the required variables. | ||
# | ||
# @version 1.1.0 | ||
# | ||
################################################### | ||
|
||
name: Populate Caches | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
populate: | ||
name: Populate all caches | ||
uses: lipemat/public-actions/populate-caches-plugin@master |