From 811eb00decb83248fa93c03917c68e6116b7533c Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Wed, 9 Dec 2020 10:23:04 -0500 Subject: [PATCH] Use Tabs not Spaces --- .github/workflows/tag-actions.yml | 104 ++++++++++++++++++------------ 1 file changed, 61 insertions(+), 43 deletions(-) diff --git a/.github/workflows/tag-actions.yml b/.github/workflows/tag-actions.yml index c9afae30..89b5ce08 100644 --- a/.github/workflows/tag-actions.yml +++ b/.github/workflows/tag-actions.yml @@ -1,43 +1,61 @@ -#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/* \ No newline at end of file +name: Tag-Actions + +on: + push: + tags: + - '*' + +jobs: + PyPI: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: [ '2.7', '3.4', '3.5', '3.6', '3.7', '3.8'] + 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 }} + + # Need to update if we support other OS's + - name: Cache PIP Install + uses: actions/cache@v2 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-${{ matrix.python-version }}-pip-build-${{ hashFiles('**/setup.py') }}-${{ hashFiles('**/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-${{ matrix.python-version }}-pip-build + + - 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/* + + Docker: + needs: PyPi + 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\//} \ No newline at end of file