mbonea-ewallet godwin commited on
Commit
b13c879
·
1 Parent(s): 8450c71

deleted workflows

Browse files
.github/workflows/PyPi.yml DELETED
@@ -1,39 +0,0 @@
1
- # This workflow will upload a Python Package using Twine when a release is created
2
- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3
-
4
- # This workflow uses actions that are not certified by GitHub.
5
- # They are provided by a third-party and are governed by
6
- # separate terms of service, privacy policy, and support
7
- # documentation.
8
-
9
- name: Upload Python Package
10
-
11
- on:
12
- release:
13
- types: [published]
14
-
15
- permissions:
16
- contents: read
17
-
18
- jobs:
19
- deploy:
20
-
21
- runs-on: ubuntu-latest
22
-
23
- steps:
24
- - uses: actions/checkout@v3
25
- - name: Set up Python
26
- uses: actions/setup-python@v4
27
- with:
28
- python-version: '3.x'
29
- - name: Install dependencies
30
- run: |
31
- python -m pip install --upgrade pip
32
- python -m pip install build
33
- - name: Build package
34
- run: python -m build
35
- - name: Publish package
36
- uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
37
- with:
38
- user: __token__
39
- password: ${{ secrets.PYPI_API_TOKEN }}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.github/workflows/PyPiChecking.yml DELETED
@@ -1,24 +0,0 @@
1
- name: PyPi Build Checking
2
-
3
- on:
4
- [pull_request]
5
-
6
- permissions:
7
- contents: read
8
-
9
- jobs:
10
- build:
11
- runs-on: ubuntu-latest
12
- steps:
13
- - uses: actions/checkout@v3
14
- name: Checkout
15
- - name: Set up Python
16
- uses: actions/setup-python@v4
17
- with:
18
- python-version: '3.x'
19
- - name: Install dependencies
20
- run: |
21
- python -m pip install --upgrade pip
22
- python -m pip install build
23
- - name: Build package
24
- run: python -m build