Merge pull request #40 from ViRb3/dependabot/pip/urllib3-2.0.7 #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["master"] | |
workflow_dispatch: | |
repository_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Build | |
run: | | |
pip3 install poetry==1.5.1 | |
poetry config virtualenvs.create false | |
poetry install | |
python3 main.py | |
echo "NEW_TAG=$(cat NEW_TAG.txt)" >> $GITHUB_ENV | |
- name: Release | |
if: hashFiles('NEW_TAG.txt') != '' | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: build/*.zip,build/updater.json | |
tag: "${{ env.NEW_TAG }}" | |
body: https://github.com/frida/frida/releases |