Skip to content

Commit 216c8f3

Browse files
committed
requested changes
1 parent 5fdac4a commit 216c8f3

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.github/workflows/release_build_infisical_cli.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ jobs:
156156
runs-on: windows-2022
157157
# needs: [goreleaser]
158158
steps:
159+
- uses: actions/checkout@v3
160+
with:
161+
fetch-depth: 0
162+
159163
- name: Fetch all tags
160164
run: git fetch --force --tags
161165

.goreleaser-windows.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,13 @@ dockers:
4040
build_flag_templates:
4141
- "--pull"
4242
- "--platform=windows/arm64"
43+
docker_manifests:
44+
- name_template: "infisical/cli:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-windows"
45+
image_templates:
46+
- "infisical/cli:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-windows-amd64"
47+
- "infisical/cli:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-windows-arm64"
48+
49+
- name_template: "infisical/cli:latest-windows"
50+
image_templates:
51+
- "infisical/cli:latest-windows-amd64"
52+
- "infisical/cli:latest-windows-arm64"

docker/windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
FROM mcr.microsoft.com/windows/nanoserver:ltsc2022
22
COPY infisical.exe /infisical.exe
3-
ENTRYPOINT ["C:\\infisical.exe"]
3+
ENTRYPOINT ["C:\\infisical.exe"]

0 commit comments

Comments
 (0)