Merge pull request #190 from canonical/IAM-712 #6
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
# Release charm's libraries if they have changed | |
name: Release Libraries | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "lib/charms/kratos/**" | |
jobs: | |
release-libs: | |
name: Release any bumped library | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Release any bumped charm library | |
uses: canonical/charming-actions/release-libraries@main | |
with: | |
credentials: "${{ secrets.CHARMCRAFT_CREDENTIALS }}" | |
github-token: "${{ github.token }}" |