Skip to content

update chisme

update chisme #42

Workflow file for this run

# reusable workflow triggered manually

Check failure on line 1 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

(Line: 32, Col: 11): 'base-channel' is already defined
name: Release charm to other tracks and channels
on:
workflow_dispatch:
inputs:
destination-channel:
description: 'Destination Channel'
required: true
origin-channel:
description: 'Origin Channel'
required: true
base-image-channel:
description: 'Base Image Channel. Defaults to 24.04'
default: '24.04'
required: false
jobs:
promote-charm:
name: Promote charm
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Release charm to channel
uses: canonical/charming-actions/release-charm@2.6.2
with:
credentials: ${{ secrets.CHARMCRAFT_CREDENTIALS }}
github-token: ${{ secrets.GITHUB_TOKEN }}
destination-channel: ${{ github.event.inputs.destination-channel }}
origin-channel: ${{ github.event.inputs.origin-channel }}
base-channel: "24.04"
base-channel: ${{ github.event.inputs.base-image-channel }}