Skip to content

Commit

Permalink
Update build-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfischak authored Dec 3, 2024
1 parent dc07287 commit 1f76ec5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Publish Docker Image
name: Build and Publish Julia Kernelspec Docker Image

on:
push:
Expand All @@ -11,17 +11,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
- name: Checkout repository
uses: actions/checkout@v3

- name: Log in to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Build Docker Image
run: |
docker build \
--file kernel-julia/gateway/kernelspec-image/Dockerfile
--tag ghcr.io/${{ github.repository }}/julia-jeg-kernelspec:beta .
--file kernel-julia/gateway/kernelspec-image/Dockerfile \
--tag ghcr.io/${{ github.repository }}/julia-jeg-kernelspec:beta \
kernel-julia/gateway/kernelspec-image
- name: Push Docker Image
run: |
Expand Down

0 comments on commit 1f76ec5

Please sign in to comment.