mirror of
https://github.com/calebstewart/pwncat.git
synced 2024-11-24 09:35:39 +01:00
48 lines
1.6 KiB
YAML
48 lines
1.6 KiB
YAML
# Automatically pull down the required versions of windows plugins
|
|
# and bundle them up for releases. This makes staging on non-internet
|
|
# connected systems easier.
|
|
name: publish
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python 3.9
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: "3.9"
|
|
- name: Install pwncat Module
|
|
run: "python setup.py install"
|
|
- name: Download and Archive Plugins
|
|
run: |
|
|
# Have pwncat download all plugins needed
|
|
pwncat --download-plugins
|
|
|
|
# They are stored in ~/.local/share/pwncat by default
|
|
tar czvf pwncat-plugins.tar.gz --transform='s|.*pwncat/||' ~/.local/share/pwncat/*
|
|
|
|
- name: Extract Release Body
|
|
run: |
|
|
# Grab tag name without the `v`
|
|
version=$(git describe --tags --abbrev=0 | sed 's/v//')
|
|
|
|
# build a changelog with just logs from this release
|
|
echo "## Changelog" >> this_version_changelog.md
|
|
cat CHANGELOG.md | sed -n '/^## \['"$version"'\]/,/^## /p' > this_version_changelog.md | head -n -1 | tail -n +3
|
|
echo "[Full Changelog](https://github.com/calebstewart/pwncat/blob/v$version/CHANGELOG.md)" >> this_version_changelog.md
|
|
- name: Publish Plugins
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: "pwncat-plugins.tar.gz"
|
|
body_path: this_version_changelog.md
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|