Skip to content
Merged
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: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: Build and push Docker image for main
if: contains(github.event_name, 'push')
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./docker/rayleigh/
cache-from: type=registry,ref=geodynamics/rayleigh-buildenv-jammy
Expand All @@ -63,7 +63,7 @@ jobs:

- name: Build and push Docker image for release
if: contains(github.event_name, 'release')
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./docker/rayleigh/
cache-from: type=registry,ref=geodynamics/rayleigh-buildenv-jammy
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Build and push TACC image for main
if: contains(github.event_name, 'push')
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./docker/rayleigh-tacc/
cache-from: type=registry,ref=geodynamics/rayleigh-buildenv-bionic
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Build and push TACC image for release
if: contains(github.event_name, 'release')
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: ./docker/rayleigh-tacc/
cache-from: type=registry,ref=geodynamics/rayleigh-buildenv-bionic
Expand Down
Loading