Skip to content

Commit 16042dc

Browse files
committed
Include SHA256 hash in release notes body
1 parent 21007c7 commit 16042dc

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff 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
@@ -53,9 +55,14 @@ jobs:
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.

0 commit comments

Comments
 (0)