Add new columns: time_open, time_close, time_high and time_low (#63) #6
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
release-pypi: | |
name: release-pypi | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
- name: build | |
run: | | |
poetry build | |
- name: Publish to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: "${{ secrets.PYPI_API_TOKEN }}" | |
- name: Create Release | |
uses: actions/create-release@main | |
env: | |
GITHUB_TOKEN: "${{ secrets.GH_PAT }}" | |
with: | |
tag_name: "${{ github.ref }}" | |
release_name: "v${{ github.ref }}" | |
draft: true | |
prerelease: false |