Skip to content

chore(deps-dev): bump mkdocstrings from 0.26.1 to 0.26.2 #735

chore(deps-dev): bump mkdocstrings from 0.26.1 to 0.26.2

chore(deps-dev): bump mkdocstrings from 0.26.1 to 0.26.2 #735

Workflow file for this run

name: Release
on:
pull_request:
push:
branches: [main]
tags:
- 'v*.*.*'
jobs:
python-poetry:
uses: radiorabe/actions/.github/workflows/[email protected]
secrets:
RABE_PYPI_TOKEN: ${{ secrets.RABE_PYPI_TOKEN }}
release-container:
uses: radiorabe/actions/.github/workflows/[email protected]
needs:
- python-poetry
with:
image: 'ghcr.io/radiorabe/acrloader'
name: 'acrloader'
display-name: 'RaBe ACR Loader'
tags: 'minimal rhel9 rabe s2i python python311 acr owncloud'
helm-chart:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
needs:
- release-container
permissions:
actions: none
checks: none
contents: none
deployments: none
issues: none
packages: write
pull-requests: none
repository-projects: none
security-events: none
statuses: none
id-token: none
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare Chart Metadata
id: meta
run: echo version=${GITHUB_REF#refs/tags/v} >> $GITHUB_OUTPUT
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.12.0
- name: Package Chart
run: helm package --version ${{ steps.meta.outputs.version }} --app-version ${{ steps.meta.outputs.version }} --destination=dist charts/acrloader
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push Chart
run: helm push dist/*.tgz oci://ghcr.io/radiorabe/helm