We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9b6bbe commit 09a8fb4Copy full SHA for 09a8fb4
.github/workflows/build.yaml
@@ -11,7 +11,7 @@ on:
11
env:
12
PLATFORMS: 'linux/amd64,linux/arm64'
13
IMAGE_NAME: 'vimagick/openrefine'
14
- OPENREFINE_VERSION: '3.7.1'
+ OPENREFINE_VERSION: '3.7.2'
15
16
jobs:
17
release:
Dockerfile
@@ -6,7 +6,8 @@ FROM openjdk:17-slim-bullseye
6
MAINTAINER EasyPi Software Foundation
7
8
ARG OPENREFINE_VERSION
9
-ARG OPENREFINE_URL=https://github.com/OpenRefine/OpenRefine/releases/download/${OPENREFINE_VERSION}/openrefine-linux-${OPENREFINE_VERSION}.tar.gz
+ARG OPENREFINE_FILE=openrefine-linux-${OPENREFINE_VERSION:?}.tar.gz
10
+ARG OPENREFINE_URL=https://github.com/OpenRefine/OpenRefine/releases/download/${OPENREFINE_VERSION}/${OPENREFINE_FILE}
RUN set -xe \
&& apt update \
0 commit comments