Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build images only when they change #146

Merged
merged 4 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build-php-images.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
name: Build PHP Images

on:
# Uncomment below for testing purposes
pull_request:
paths:
- 'images/**'
- '.github/workflows/build-php-images.yml'
push:
branches:
- main
paths:
- 'images/**'
- '.github/workflows/build-php-images.yml'
workflow_dispatch:

jobs:
buildx:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

* Updated GitHub Actions to build images only on changes to images or workflows.

## v1.6.1 - [November 4, 2024](https://github.com/lando/php/releases/tag/v1.6.1)

* Updated to [@lando/vitepress-theme-default-plus@v1.1.0-beta.18](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.1.0-beta.18).
Expand Down
Loading