File tree Expand file tree Collapse file tree 2 files changed +5
-20
lines changed
Expand file tree Collapse file tree 2 files changed +5
-20
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ jobs:
139139 AWS_SECRET_ACCESS_KEY : ${{ secrets.INFISICAL_CLI_REPO_AWS_SECRET_ACCESS_KEY }}
140140 CLOUDFRONT_DISTRIBUTION_ID : ${{ secrets.INFISICAL_CLI_REPO_CLOUDFRONT_DISTRIBUTION_ID }}
141141
142+ # Currently only supports Windows amd64
142143 goreleaser-windows :
143144 runs-on : windows-2022
144145 steps :
@@ -156,17 +157,11 @@ jobs:
156157 cache : true
157158 cache-dependency-path : go.sum
158159
159- - name : Check Docker info
160- run : |
161- docker version
162- docker info
163-
164- - name : Switch to Windows containers
165- run : |
166- & $Env:ProgramFiles\Docker\Docker\DockerCli.exe -SwitchDaemon
167-
168160 - name : 🐋 Login to Docker Hub
169- run : docker login -u ${{ secrets.DOCKERHUB_USERNAME }} -p ${{ secrets.DOCKERHUB_TOKEN }}
161+ uses : docker/login-action@v2
162+ with :
163+ username : ${{ secrets.DOCKERHUB_USERNAME }}
164+ password : ${{ secrets.DOCKERHUB_TOKEN }}
170165
171166 - uses : goreleaser/goreleaser-action@v4
172167 with :
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ builds:
1212 - windows
1313 goarch :
1414 - amd64
15- - arm64
1615
1716dockers :
1817 - dockerfile : docker/windows
@@ -23,12 +22,3 @@ dockers:
2322 image_templates :
2423 - " infisical/cli:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-windows-amd64"
2524 - " infisical/cli:latest-windows-amd64"
26-
27- - dockerfile : docker/windows
28- goos : windows
29- goarch : arm64
30- ids :
31- - windows-build
32- image_templates :
33- - " infisical/cli:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-windows-arm64"
34- - " infisical/cli:latest-windows-arm64"
You can’t perform that action at this time.
0 commit comments