[DPE-5549] Enable TLS v1.2 for client communication (#161) #118
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
# Copyright 2023 Canonical Ltd. | |
# See LICENSE file for licensing details. | |
name: Release to Charmhub | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
lib-check: | |
name: Check libraries | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Check libs | |
uses: canonical/charming-actions/check-libraries@2.2.3 | |
with: | |
credentials: "${{ secrets.CHARMHUB_TOKEN }}" # FIXME: current token will expire in 2023-07-04 | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
ci-tests: | |
needs: | |
- lib-check | |
uses: ./.github/workflows/ci.yaml | |
build: | |
name: Build charm | |
uses: canonical/data-platform-workflows/.github/workflows/build_charm_without_cache.yaml@v7 | |
release: | |
name: Release to Charmhub | |
needs: | |
- lib-check | |
- ci-tests | |
- build | |
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v7 | |
with: | |
channel: 3/edge | |
artifact-name: ${{ needs.build.outputs.artifact-name }} | |
secrets: | |
charmhub-token: ${{ secrets.CHARMHUB_TOKEN }} | |
permissions: | |
contents: write # Needed to create GitHub release |