feat(backup): Go to blocked if invalid integration (#345) #129
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: | |
lib-check: | |
name: Check libraries | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check libs | |
uses: canonical/charming-actions/[email protected] | |
with: | |
# NOTE: CHARMHUB_TOKEN is only allowed in latest/edge, latest/candidate | |
credentials: "${{ secrets.CHARMHUB_TOKEN }}" | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
ci-tests: | |
needs: | |
- lib-check | |
uses: ./.github/workflows/ci.yaml | |
secrets: inherit | |
permissions: | |
contents: write # Needed for Allure Report beta | |
build: | |
name: Build charm | |
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | |
release: | |
name: Release charm | |
needs: | |
- ci-tests | |
- build | |
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | |
with: | |
channel: 6/edge | |
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }} | |
secrets: | |
charmhub-token: ${{ secrets.CHARMHUB_TOKEN }} | |
permissions: | |
contents: write # Needed to create GitHub release |