Skip to content

Commit

Permalink
Fix image name
Browse files Browse the repository at this point in the history
  • Loading branch information
pocki committed Feb 2, 2024
1 parent 6f3c89a commit 8951a9e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ jobs:
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3.0.0

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push minimal-dotnet
id: docker_build_minimal
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: true
build-args: base_image=jupyter/minimal-notebook
tags: pocki/jupyter-dotnet/minimal-dotnet8:latest, pocki/jupyter-dotnet/minimal-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-minimal-dotnet8:latest, pocki/jupyter-minimal-dotnet8:${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand All @@ -56,11 +56,11 @@ jobs:

- name: Build and push scipy-dotnet
id: docker_build_scipy
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: true
build-args: base_image=jupyter/scipy-notebook
tags: pocki/jupyter-dotnet/scipy-dotnet8:latest, pocki/jupyter-dotnet/scipy-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-scipy-dotnet8:latest, pocki/jupyter-scipy-dotnet8:${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand All @@ -72,11 +72,11 @@ jobs:

- name: Build and push r-dotnet
id: docker_build_r
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v5.1.0
with:
push: true
build-args: base_image=jupyter/r-notebook
tags: pocki/jupyter-dotnet/r-dotnet8:latest, pocki/jupyter-dotnet/r-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-r-dotnet8:latest, pocki/jupyter-r-dotnet8:${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand Down

0 comments on commit 8951a9e

Please sign in to comment.