-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (43 loc) · 1.37 KB
/
tag-actions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#name: Tag-Actions
#
#on:
# push:
# tags:
# - '*'
#
#jobs:
# Docker:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Build image
# run: docker build . --file Dockerfile --tag $IMAGE_NAME
# - name: Log into registry
# run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login docker.pkg.github.com -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
# - name: Run Dep Docs
# run: make deps-docs
# - name: Build Images
# run: make publish-docker VERSION=${GITHUB_REF/refs\/tags\//}
# PyPI:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: [ '2.7', '3.4', '3.5', '3.6', '3.7', '3.8', 'pypy2', 'pypy3' ]
# name: Python ${{ matrix.python-version }} PyPi
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install setuptools wheel twine
# - name: Build and publish
# env:
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
# run: |
# python setup.py sdist bdist_wheel
# twine upload dist/*