Skip to content

Commit 5dc318b

Browse files
committed
Fix file naming in release workflow
1 parent 5f2e20c commit 5dc318b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release-bruce.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- run: npm exec -- prettier --check src
2727
- name: Create tarball
2828
run: |
29-
tar -czf /tmp/bruce-esp-web-tool.tgz --exclude='.git' --exclude='node_modules' .
29+
tar -czf /tmp/bruce-esp-web-tools.tgz --exclude='.git' --exclude='node_modules' .
3030
- name: Upload release asset
3131
uses: actions/upload-release-asset@v1
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
with:
3535
upload_url: ${{ github.event.release.upload_url }}
36-
asset_path: /tmp/bruce-esp-web-tool.tgz
37-
asset_name: bruce-esp-web-tool.tgz
36+
asset_path: /tmp/bruce-esp-web-tools.tgz
37+
asset_name: bruce-esp-web-tools.tgz
3838
asset_content_type: application/gzip

0 commit comments

Comments
 (0)