Merge pull request #96 from canonical/DPE-6355-robust-tls-race-conds #73
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
name: Release to 6/edge | |
on: | |
push: | |
branches: | |
- 6/edge | |
jobs: | |
ci-tests: | |
uses: ./.github/workflows/ci.yaml | |
secrets: inherit | |
release: | |
name: Release charm | |
needs: | |
- ci-tests | |
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v29.0.0 | |
with: | |
channel: 6/edge | |
artifact-prefix: ${{ needs.ci-tests.outputs.artifact-prefix }} | |
secrets: | |
charmhub-token: ${{ secrets.CHARMHUB_TOKEN }} | |
permissions: | |
contents: write # Needed to create git tags | |
release-libraries: | |
name: Release libraries | |
runs-on: ubuntu-latest | |
needs: | |
- release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- run: | | |
# Workaround for https://github.com/canonical/charmcraft/issues/1389#issuecomment-1880921728 | |
touch requirements.txt | |
- name: Release any bumped charm libs | |
uses: canonical/charming-actions/release-libraries@2.4.0 | |
with: | |
credentials: ${{ secrets.CHARMHUB_TOKEN }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} |