Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Mar 26, 2024
1 parent f35f493 commit c3cdcb5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Deploy image to GHCR 🪂

env:
REGISTRY: ghcr.io
# PLATFORMS is a comma-separted list of architectures to build for.
# We disable linux/arm64 due to runner mem saturation.
PLATFORMS: linux/amd64

on:
# TODO cleanup
push:
branches:
- add-julia-docker-image
# repository_dispatch:
# types:
# - scheduled

workflow_dispatch:
inputs:
origin:
Expand Down Expand Up @@ -155,9 +155,9 @@ jobs:
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ needs.normalize-inputs.outputs.destination_image_name }}-${{ needs.normalize-inputs.outputs.destination_image_tag }}
key: ${{ runner.os }}-buildx-${{ needs.normalize-inputs.outputs.destination_image_name }}-${{ needs.normalize-inputs.outputs.tag }}
restore-keys: |
${{ runner.os }}-buildx-${{ needs.normalize-inputs.outputs.destination_image_name }}-${{ needs.normalize-inputs.outputs.destination_image_tag }}
${{ runner.os }}-buildx-${{ needs.normalize-inputs.outputs.destination_image_name }}-${{ needs.normalize-inputs.outputs.tag }}
${{ runner.os }}-buildx-${{ needs.normalize-inputs.outputs.destination_image_name }}
${{ runner.os }}-buildx-
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ docker run -it --entrypoint julia ghcr.io/insightsengineering/julia:1.10-bookwor
To run an interactive Julia session, execute:

```shell
docker run -it --entrypoint julia ghcr.io/insightsengineering/julia:1.10-bookworm
docker run -it ghcr.io/insightsengineering/julia:1.10-bookworm
```

To run a shell in the Julia container, execute:
Expand Down

0 comments on commit c3cdcb5

Please sign in to comment.