Merge pull request #41 from yeger00/24-lsp_structslinklocation-is-ref… #6
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: Publish Package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: install poetry | |
uses: snok/[email protected] | |
- name: build | |
run: make build | |
- name: publish | |
run: make publish PASSWORD=${{ secrets.PYPI_API_TOKEN }} |