Skip to content

Disable fetching of settings when the selected program is changed #36

Disable fetching of settings when the selected program is changed

Disable fetching of settings when the selected program is changed #36

Workflow file for this run

name: "Auto Release and Deploy"
on:
push:
tags:
- "v?[0-9]+.[0-9]+.[0-9]+"
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
deploy:
name: "Deploy to pypi"
environment: pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}