Skip to content

Make it possible to specify a base when rebuilding the PE (#107) #12

Make it possible to specify a base when rebuilding the PE (#107)

Make it possible to specify a base when rebuilding the PE (#107) #12

Workflow file for this run

name: Release new malduck version
on:
push:
tags: 'v*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build package
run: |
pip3 install setuptools wheel
python3 setup.py bdist_wheel
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@v1.3.0
with:
user: __token__
password: ${{ secrets.pypi_password }}