Skip to content

Commit

Permalink
Docker workflow: trying to fix the tag
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Sep 9, 2024
1 parent 7bfa9a9 commit 13f4f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
file: tools/docker/Dockerfile
tags: ghcr.io/r-lib/nanoparquet:${{ env.GITHUB_REF_TYPE == 'tag' && env.GITHUB_REF_NAME || 'devel' }}
tags: ghcr.io/r-lib/nanoparquet:${{ github.ref_type != 'tag' && 'devel' || github.ref_name }}

0 comments on commit 13f4f7f

Please sign in to comment.