Skip to content

fix: fix loading preload scripts (#66) (#67) #50

fix: fix loading preload scripts (#66) (#67)

fix: fix loading preload scripts (#66) (#67) #50

Workflow file for this run

name: Release Workflow
on:
push:
branches:
- master
jobs:
build:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Prepare Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r requirements/build.txt
python3 setup.py install
- name: Build Package
run: inv build
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
inv release --no-dry-run
inv info --github