build: bump version to 2.2.1 #364
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Stage | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
jobs: | |
stage: | |
runs-on: ubuntu-latest | |
environment: staging | |
name: Build and publish early access to GitHub | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.13 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
cache: 'pip' | |
cache-dependency-path: | | |
requirements-dev.txt | |
requirements_test.txt | |
- name: Prepare python environment | |
run: | | |
pip install -r requirements.txt -r requirements_test.txt | |
- name: Test project | |
run: pytest -v --cov --cov-report=xml:coverage.xml | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} | |
- name: Set up QEMU | |
uses: docker/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Login to GHCR | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GHCR_PAT }} | |
- name: Get current date | |
id: getDate | |
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- name: Build images and push to GHCR | |
uses: docker/[email protected] | |
with: | |
context: . | |
push: true | |
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8 | |
tags: ghcr.io/tomerfi/switcher_webapi:early-access | |
build-args: | | |
VCS_REF=${{ github.sha }} | |
BUILD_DATE=${{ steps.getDate.outputs.date }} | |
VERSION=early-access | |
cache-from: | | |
type=local,src=/tmp/.buildx-cache | |
ghcr.io/tomerfi/switcher_webapi:early-access | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
- name: Push coverage report to CodeCov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.xml | |
fail_ci_if_error: true |