Promote charm to other tracks and channels #2
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
# reusable workflow triggered manually | |
name: Promote charm to other tracks and channels | |
on: | |
workflow_dispatch: | |
inputs: | |
destination-channel: | |
description: 'Destination Channel' | |
required: true | |
origin-channel: | |
description: 'Origin Channel' | |
required: true | |
charm-name: | |
description: 'Charm subdirectory name' | |
required: true | |
jobs: | |
promote-charm: | |
name: Promote charm | |
runs-on: ubuntu-20.04 | |
env: | |
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_CREDENTIALS }} | |
steps: | |
- name: Install charmcraft | |
run: | | |
sudo snap install charmcraft --classic --channel latest/stable | |
- name: Run charmcraft promote | |
run: | | |
charmcraft promote --name ${{ github.event.inputs.charm-name }} \ | |
--from-channel ${{ github.event.inputs.origin-channel }} \ | |
--to-channel ${{ github.event.inputs.destination-channel }} \ | |
--yes |