Skip to content

workflow.yml

workflow.yml #1

Workflow file for this run

name: Publish WSON Package
on:
push:
branches:
- master # 또는 여러분이 사용하는 기본 브랜치 이름
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # 사용할 파이썬 버전
- name: Install dependencies
run: |
pip install setuptools wheel twine
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Upload to PyPI
run: |
twine upload dist/*
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}