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.
2 parents ab66ee0 + 9bc3c99 commit 94263b6Copy full SHA for 94263b6
.github/workflows/build.yml
@@ -31,7 +31,7 @@ jobs:
31
password: ${{ secrets.GITHUB_TOKEN }}
32
- name: Extract metadata (tags, labels) for Docker
33
id: meta
34
- uses: docker/metadata-action@v3.4.1
+ uses: docker/metadata-action@v4
35
with:
36
images: |
37
ghcr.io/aksw/jekyll-rdf
docker-resources/entrypoint.sh
@@ -1,4 +1,9 @@
1
#!/bin/sh
2
3
bundle install
4
-jekyll build
+if [ $# -eq 0 ]
5
+ then
6
+ jekyll build
7
+ else
8
+ $@
9
+fi
0 commit comments