Skip to content

Commit 6d4e97e

Browse files
author
Your Name
committed
Fix workflow again
1 parent 30f0eb5 commit 6d4e97e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Release
22
on:
33
push:
4-
branches:
5-
- master
4+
tags:
5+
- '*'
66
jobs:
77
release:
88
name: Release
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
upload_url: ${{ steps.release.outputs.upload_url }}
3535
asset_path: ${{ github.workspace }}/frida-cshell.js
36-
asset_name: frida-cshell-${{ github.ref }}.js
36+
asset_name: frida-cshell-${{ github.ref_name }}.js
3737
asset_content_type: text/javascript
3838
- name: Upload SH
3939
id: uploadsh
@@ -44,5 +44,5 @@ jobs:
4444
with:
4545
upload_url: ${{ steps.release.outputs.upload_url }}
4646
asset_path: ${{ github.workspace }}/frida-cshell
47-
asset_name: frida-cshell-${{ github.ref }}
47+
asset_name: frida-cshell-${{ github.ref_name }}
4848
asset_content_type: text/x-shellscript

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frida-cshell",
3-
"version": "1.8.11",
3+
"version": "1.8.12",
44
"description": "Frida's CShell",
55
"scripts": {
66
"prepare": "npm run version && npm run build && npm run package && npm run copy",

0 commit comments

Comments
 (0)