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 160e117 commit fd5b69aCopy full SHA for fd5b69a
.github/workflows/main.yml
@@ -119,6 +119,12 @@ jobs:
119
fi
120
121
122
+ if [[ "${{ matrix.node }}" == "18"]]; then
123
+ echo "platorms=linux/amd64,linux/arm/v7,linux/arm64" >> $GITHUB_OUTPUT
124
+ else
125
+ echo "platorms=linux/amd64,linux/arm64" >> $GITHUB_OUTPUT
126
+ fi
127
+
128
echo $TAGS
129
echo "tags=$TAGS" >> $GITHUB_OUTPUT
130
echo "push=$PUSH" >> $GITHUB_OUTPUT
@@ -143,7 +149,7 @@ jobs:
143
149
uses: docker/build-push-action@v5
144
150
with:
145
151
context: .
146
- platforms: linux/amd64, linux/arm64
152
+ platforms: ${{ steps.nrVersion.outputs.platforms }}
147
153
push: ${{ steps.nrVersion.outputs.push }}
148
154
file: .docker/Dockerfile.alpine
155
build-args: |
0 commit comments