Merge branch 'main' of github.com:ipnet-mesh/meshcore-hub into feat/postgres-support

This commit is contained in:
Louis King
2026-06-15 15:11:29 +01:00
2 changed files with 20 additions and 0 deletions
+10
View File
@@ -117,6 +117,16 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Delete old untagged package versions
if: steps.decide.outputs.changed == 'true'
continue-on-error: true
uses: actions/delete-package-versions@v5
with:
package-name: meshcore-mqtt-broker
package-type: container
delete-only-untagged-versions: "true"
min-versions-to-keep: 10
- name: Skip build (unchanged)
if: steps.decide.outputs.changed != 'true'
run: echo "Upstream ${{ steps.check.outputs.upstream_sha }} already built; skipping."
+10
View File
@@ -69,6 +69,16 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Delete old untagged package versions
if: github.event_name != 'pull_request'
continue-on-error: true
uses: actions/delete-package-versions@v5
with:
package-name: ${{ github.event.repository.name }}
package-type: container
delete-only-untagged-versions: "true"
min-versions-to-keep: 10
- name: Test Docker image
if: github.event_name == 'pull_request'
run: |