Update GHA workflow actions to latest versions #52
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: Backend testing.plone.org CI and Deploy | |
on: | |
push: | |
paths: | |
- "backend/**" | |
workflow_dispatch: | |
jobs: | |
black: | |
if: github.ref_type == 'branch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v4 | |
- name: Run check | |
uses: plone/code-analysis-action@v2 | |
with: | |
base_dir: 'backend' | |
check: 'black' | |
flake8: | |
if: github.ref_type == 'branch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v3 | |
- name: Run check | |
uses: plone/code-analysis-action@v2 | |
with: | |
base_dir: 'backend' | |
check: 'flake8' | |
isort: | |
if: github.ref_type == 'branch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v3 | |
- name: Run check | |
uses: plone/code-analysis-action@v2 | |
with: | |
base_dir: 'backend' | |
check: 'isort' | |
zpretty: | |
if: github.ref_type == 'branch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout codebase | |
uses: actions/checkout@v3 | |
- name: Run check | |
uses: plone/code-analysis-action@v2 | |
with: | |
base_dir: 'backend' | |
check: 'zpretty' | |
tests: | |
if: github.ref_type == 'branch' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: | |
- 3.11 | |
plone: | |
- "6.0.6" | |
defaults: | |
run: | |
working-directory: ./backend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Plone ${{ matrix.plone }} with Python ${{ matrix.python }} | |
uses: plone/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
plone-version: ${{ matrix.plone }} | |
- name: Install package | |
run: | | |
pip install --pre mxdev | |
mxdev -c mx.ini | |
pip install -r requirements-mxdev.txt | |
- name: Run tests | |
run: | | |
pytest | |
release: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
needs: [black, flake8, isort, zpretty, tests] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/plone/ploneorg-backend | |
flavor: | | |
latest=false | |
tags: | | |
type=ref,event=branch | |
type=sha | |
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
platforms: linux/amd64 | |
context: backend | |
file: backend/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
deploy: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
concurrency: deploy_testing | |
needs: | |
- release | |
runs-on: ubuntu-latest | |
environment: | |
name: testing.plone.org | |
url: https://testing.plone.org | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Deploy to testing.plone.org | |
uses: kitconcept/[email protected] | |
with: | |
registry: "ghcr.io" | |
username: ${{ github.actor }} | |
password: ${{ secrets.DEPLOY_GHCR_READ_TOKEN }} | |
remote_host: ${{ vars.DEPLOY_HOST }} | |
remote_port: ${{ vars.DEPLOY_PORT }} | |
remote_user: ${{ vars.DEPLOY_USER }} | |
remote_private_key: ${{ secrets.DEPLOY_SSH }} | |
stack_file: "devops/stacks/testing.plone.org.yml" | |
stack_name: "testing-plone-org" | |
env_file: ${{ secrets.ENV_FILE }} | |
deploy_timeout: 480 |