We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e545881 commit c61158cCopy full SHA for c61158c
.github/workflows/release-snapshot.yml
@@ -6,6 +6,7 @@ on:
6
- "main"
7
- "demo-*"
8
- "bugbash-*"
9
+ - "eval-*"
10
11
# Confirm that snapshot builds work if this file is modified.
12
pull_request:
@@ -97,3 +98,21 @@ jobs:
97
98
files: |-
99
dist/databricks_cli_*.zip
100
dist/databricks_cli_*.tar.gz
101
+
102
+ scan:
103
+ needs: goreleaser
104
+ runs-on: ubuntu-latest
105
106
+ strategy:
107
+ matrix:
108
+ artifact:
109
+ - cli_darwin_snapshot
110
+ - cli_linux_snapshot
111
+ - cli_windows_snapshot
112
113
+ steps:
114
+ - name: Scan artifact
115
+ uses: databricks/gh-action-scan@3599451f16bfeaecaf4fc7dc0853bcd6d89e9ea1
116
+ with:
117
+ download-artifact: ${{ matrix.artifact }}
118
+ artifact-name: ${{ matrix.artifact }}
0 commit comments