Skip to content

Commit

Permalink
release commit 失败
Browse files Browse the repository at this point in the history
  • Loading branch information
yhy0 committed May 12, 2023
1 parent 8ec7ef0 commit 7f0e486
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 29 deletions.
32 changes: 3 additions & 29 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
submodules: recursive
- name: Setup NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install && npm run build
Expand Down Expand Up @@ -86,35 +86,9 @@ jobs:
path: target/*

# release assets
# 获取最近发布版本的 tag
- name: Get latest release tag
id: get_latest_release
uses: mheap/github-tag-action@v1.13.0
with:
ref: 'latest'

# 获取当前提交的 tag
- name: Get current tag
id: get_current_tag
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
shell: bash

# 获取从上次发布版本到本次提交的所有 commit 记录
- name: Get commit messages
id: get_commit_messages
run: |
git log --pretty=format:"- %s" ${{ steps.get_latest_release.outputs.tag }}..HEAD > commit_messages.txt
echo ::set-output name=messages::$(cat commit_messages.txt | awk '{printf "%s<br/>",$0;}')
shell: bash

# 如果当前提交是一个新的 tag,则创建 release 并显示所有 commit 记录
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
if: ${{ steps.get_latest_release.outputs.tag != steps.get_current_tag.outputs.tag }}
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
target/*
body: ${{ steps.get_commit_messages.outputs.messages }}
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
files: target/*
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ https://infosecwriteups.com/403-bypass-lyncdiscover-microsoft-com-db2778458c33

用到的各种字典文件, 第一次运行会将内置字典释放到用户目录的`.config/ChYing`目录下,后续每次运行都会先读取一遍

### 编码、解码

### 杀软识别

https://github.com/gh0stkey/avList/blob/master/avlist.js

## 问题
前端不会,全靠 ChatGPT

Expand All @@ -84,6 +90,8 @@ https://github.com/devploit/dontgo403

https://github.com/lqqyt2423/go-mitmproxy

https://github.com/gh0stkey/avList/

https://wails.io/

## Star History
Expand Down
9 changes: 9 additions & 0 deletions frontend/src/components/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ function openURL(url) {
<n-p> Repeater 模块</n-p>
<n-p> Intruder 模块 四种Fuzz模式已实现, payload部分各种处理函数未实现,现在只有MD5加密</n-p>
</n-card>

<n-card style="text-align: left;">
<n-h3> 编码、解码 </n-h3>
</n-card>

<n-card style="text-align: left;">
<n-h3> 杀软识别 </n-h3>
<n-p> <n-button @click="openURL('https://github.com/gh0stkey/avList')" quaternary type="primary">avList</n-button></n-p>
</n-card>
</div>
</n-collapse-item>
<n-collapse-item title="字典可配置" name="2">
Expand Down

0 comments on commit 7f0e486

Please sign in to comment.