Skip to content

Commit 356ade6

Browse files
committed
post hook
1 parent 321a96d commit 356ade6

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666

6767
goreleaser-unix:
68+
if: false # Temporarily disabled for testing
6869
runs-on:
6970
group: databricks-deco-testing-runner-group
7071
labels: ubuntu-latest-deco
@@ -110,6 +111,7 @@ jobs:
110111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
111112

112113
create-setup-cli-release-pr:
114+
if: false # Temporarily disabled for testing
113115
runs-on:
114116
group: databricks-deco-testing-runner-group
115117
labels: ubuntu-latest-deco
@@ -138,6 +140,7 @@ jobs:
138140
});
139141
140142
create-homebrew-tap-release-pr:
143+
if: false # Temporarily disabled for testing
141144
runs-on:
142145
group: databricks-deco-testing-runner-group
143146
labels: ubuntu-latest-deco
@@ -179,6 +182,7 @@ jobs:
179182
});
180183
181184
create-vscode-extension-update-pr:
185+
if: false # Temporarily disabled for testing
182186
runs-on:
183187
group: databricks-deco-testing-runner-group
184188
labels: ubuntu-latest-deco
@@ -207,6 +211,7 @@ jobs:
207211
});
208212
209213
pypi-publish:
214+
if: false # Temporarily disabled for testing
210215
runs-on:
211216
group: databricks-deco-testing-runner-group
212217
labels: ubuntu-latest-deco
@@ -244,6 +249,7 @@ jobs:
244249
packages-dir: python/dist
245250

246251
publish-to-winget-pkgs:
252+
if: false # Temporarily disabled for testing
247253
runs-on:
248254
group: databricks-deco-testing-runner-group
249255
labels: ubuntu-latest-deco

.goreleaser-windows.yaml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ before:
55
- go mod download
66

77
builds:
8-
- env:
8+
- id: cli
9+
env:
910
- CGO_ENABLED=0
1011
mod_timestamp: '{{ .CommitTimestamp }}'
1112
flags:
@@ -38,18 +39,9 @@ builds:
3839
- arm64
3940
binary: databricks
4041

41-
signs:
42-
- cmd: signtool
43-
args:
44-
- sign
45-
- /fd
46-
- SHA256
47-
- /tr
48-
- http://timestamp.digicert.com
49-
- /td
50-
- SHA256
51-
- ${artifact}
52-
artifacts: binary
42+
hooks:
43+
post:
44+
- cmd /c signtool sign /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 /dlib Azure.CodeSigning.Dlib.dll /dmdf metadata.json "{{ .Path }}"
5345

5446
archives:
5547
- formats: ["zip"]
@@ -65,7 +57,7 @@ checksum:
6557
algorithm: sha256
6658

6759
snapshot:
68-
version_template: '{{ incpatch .Version }}-dev+{{ .ShortCommit }}'
60+
version_template: 'v0.0.0-dev+{{ .ShortCommit }}'
6961

7062
changelog:
7163
sort: asc

0 commit comments

Comments
 (0)