File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 56
56
runs-on : ubuntu-24.04
57
57
needs :
58
58
- information
59
+ permissions :
60
+ contents : read
61
+ packages : write
59
62
strategy :
60
63
matrix :
61
64
architecture : ${{ fromJson(needs.information.outputs.architectures) }}
71
74
echo "Base image: ${from}"
72
75
echo "from=${from}" >> "$GITHUB_OUTPUT"
73
76
74
- if [[ "${{ matrix.architecture}}" = "amd64" ]]; then
77
+ if [[ "${{ matrix.architecture }}" = "amd64" ]]; then
75
78
echo "platform=linux/amd64" >> "$GITHUB_OUTPUT"
76
79
elif [[ "${{ matrix.architecture }}" = "i386" ]]; then
77
80
echo "platform=linux/386" >> "$GITHUB_OUTPUT"
@@ -104,7 +107,7 @@ jobs:
104
107
shell : bash
105
108
run : |
106
109
addon_image=$(yq --no-colors eval ".image" "${{ needs.information.outputs.config-file }}")
107
- addon_image=${addon_image/\{arch\}/${{ ${{ matrix.architecture }} }}}
110
+ addon_image=${addon_image/\{arch\}/${{ matrix.architecture }}}
108
111
echo "Addon image: ${addon_image}"
109
112
echo "image=${addon_image}" >> "$GITHUB_OUTPUT"
110
113
You can’t perform that action at this time.
0 commit comments