Skip to content

Commit

Permalink
Add a populate-caches workflow to pre-populate GH Action caches
Browse files Browse the repository at this point in the history
  • Loading branch information
lipemat committed Aug 5, 2024
1 parent fe8262e commit 3e4ad30
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/populate-caches.yml
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

0 comments on commit 3e4ad30

Please sign in to comment.