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 a503b13 commit 88ea1c0Copy full SHA for 88ea1c0
.github/workflows/build.yml
@@ -47,10 +47,11 @@ jobs:
47
48
- name: Build
49
run: |
50
- docker build --pull --tag rootfsimage .
+ docker buildx build --pull --tag rootfsimage --build-arg VERSION=$(git describe --tags --dirty --always --abbrev=12) .
51
id=$(docker create rootfsimage true)
52
mkdir -p ./plugin/rootfs/
53
docker export "$id" | tar -x -C ./plugin/rootfs/
54
+ cp config.json ./plugin/
55
docker rm -vf "$id"
56
57
- name: Publish latest
0 commit comments