Skip to content

πŸ†™ upgrade minor number #22

πŸ†™ upgrade minor number

πŸ†™ upgrade minor number #22

Workflow file for this run

name: Push latest
on:
push:
branches:
- develop
jobs:
build-image:
name: Build Docker image πŸ‹
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@main
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: islasgeci/container_runner:latest
outputs: type=docker,dest=/tmp/image.tar
- name: Upload artifact
uses: actions/upload-artifact@main
with:
name: image
path: /tmp/image.tar
test-module:
name: Test Python module 🐍
needs: build-image
runs-on: ubuntu-latest
steps:
- name: Copia repositorio
uses: actions/checkout@main
- name: Download artifact
uses: actions/download-artifact@main
with:
name: image
path: /tmp
- name: Load image
run: |
docker load --input /tmp/image.tar
docker image ls -a
- name: Verifica el formato
run: docker run islasgeci/container_runner:latest make check
- name: Corre pruebas y evalΓΊa cobertura
run: docker run --volume $PWD:/workdir islasgeci/container_runner:latest make coverage
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@main
with:
files: ./coverage.xml
verbose: true
- name: Create/Update tag
uses: rickstaa/action-create-tag@v1.5.4
with:
tag: "latest"
message: "Latest release"
force_push_tag: true
build-n-publish:
name: Build and publish Python 🐍 distributions πŸ“¦ to PyPI
needs: test-module
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python 3.X
uses: actions/setup-python@main
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution πŸ“¦ to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}
skip-existing: true