imjoseangel / powerline-k8sstatus

A Powerline segment for showing the status of a K8s context
MIT License
2 stars 0 forks source link

Feature/3 #25

Closed imjoseangel closed 3 years ago

imjoseangel commented 3 years ago

SUMMARY

Fixes #3

ISSUE TYPE

COMPONENT NAME

Release workflow

ADDITIONAL INFORMATION

name: Release to PyPI
on:
  release:
    types: [released]

jobs:
  release:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Python 3.8
      uses: actions/setup-python@v2
      with:
        python-version: 3.8
    - name: Install Tools
      run: |
        python -m pip install --upgrade pip
        pip install setuptools wheel twine
    - name: Package and Upload
      env:
        POWERLINEK8SSTATUS_VERSION: ${{ github.event.release.tag_name }}
        TWINE_USERNAME: __token__
        TWINE_PASSWORD: ${{ secrets.PYPI_APIKEY }}
      run: |
        make build
codecov[bot] commented 3 years ago

Codecov Report

Merging #25 (32c2fec) into devel (81f478a) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##            devel      #25   +/-   ##
=======================================
  Coverage   97.11%   97.11%           
=======================================
  Files           3        3           
  Lines         104      104           
=======================================
  Hits          101      101           
  Misses          3        3           
Flag Coverage Δ
unittests 97.11% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.


Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 81f478a...32c2fec. Read the comment docs.