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 76214f0 commit 93023eeCopy full SHA for 93023ee
.github/workflows/docker-publish-tag.yml
@@ -69,7 +69,9 @@ jobs:
69
- name: Add latest if Alpine
70
id: addlatest
71
run: |
72
- [[ ${{ matrix.distro }} == "alpine" ]] && echo "::set-output name=latest::latest"
+ if [ "${{ matrix.distro }}" == "alpine" ]; then
73
+ echo "::set-output name=latest::latest"
74
+ fi
75
76
# Extract metadata (tags, labels) for Docker
77
# https://github.com/docker/metadata-action
@@ -100,4 +102,4 @@ jobs:
100
102
build-args: |
101
103
RCLONE_VERSION=${{ steps.v_rclone.outputs.version }}
104
MERGERFS_VERSION=2.33.0
- platforms: linux-amd64
105
+ platforms: linux/amd64
0 commit comments