feat: add ambient integration tests #36
Workflow file for this run
This file contains hidden or 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: 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 }} | ||