File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,12 @@ jobs:
3232 run : dxt pack . outlook-mcp.dxt
3333
3434 - name : Generate SHA256 checksum
35+ id : checksum
3536 run : |
3637 sha256sum outlook-mcp.dxt > outlook-mcp.dxt.sha256
37- echo "SHA256 checksum:"
38- cat outlook-mcp.dxt.sha256
38+ HASH=$(cut -d ' ' -f 1 outlook-mcp.dxt.sha256)
39+ echo "SHA256=$HASH" >> $GITHUB_OUTPUT
40+ echo "SHA256 checksum: $HASH"
3941
4042 - name : Extract version from tag
4143 id : version
5355 2. In Claude Desktop: **Settings** → **Extensions** → **Install from file**
5456 3. Enter your Azure Client ID and Tenant ID when prompted
5557
58+ ### SHA256 Checksum
59+ ```
60+ ${{ steps.checksum.outputs.SHA256 }} outlook-mcp.dxt
61+ ```
62+
5663 ### Verify Download (Optional)
5764 ```bash
58- sha256sum -c outlook-mcp.dxt.sha256
65+ echo "${{ steps.checksum.outputs.SHA256 }} outlook-mcp.dxt" | sha256sum -c
5966 ```
6067
6168 See [README](https://github.com/XenoXilus/outlook-mcp#readme) for Azure setup instructions.
You can’t perform that action at this time.
0 commit comments