Skip to content

[DPE-6089] Update Terraform to new scheme (#520) #311

[DPE-6089] Update Terraform to new scheme (#520)

[DPE-6089] Update Terraform to new scheme (#520) #311

Workflow file for this run

name: Release to 6/edge
on:
push:
branches:
- 6/edge
jobs:
ci-tests:
uses: ./.github/workflows/ci.yaml

Check failure on line 10 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yaml" -> "./.github/workflows/ci.yaml" (source branch with sha:62dd700d4e9ddbe25debd2d5bd51e7b4966331ef) : You have an error in your yaml syntax on line 52
secrets: inherit
permissions:
contents: write # Needed for Allure Report beta
build:
name: Build charm
uses: canonical/data-platform-workflows/.github/workflows/[email protected]
with:
artifact-prefix: temp-release-packed-charm # TODO: remove after caching re-enabled on PR
release-charm:
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
release-libraries:
name: Release libraries
runs-on: ubuntu-latest
needs:
- release-charm
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/[email protected]
with:
credentials: "${{ secrets.CHARMHUB_TOKEN }}"
github-token: "${{ secrets.GITHUB_TOKEN }}"