Skip to content

feat: Add the Terraform module - apply Gulsum's changes (#355) #195

feat: Add the Terraform module - apply Gulsum's changes (#355)

feat: Add the Terraform module - apply Gulsum's changes (#355) #195

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:14b64686a71c990f4b099ac1411f51c237d935fa) : You have an error in your yaml syntax on line 58
secrets: inherit
build:
name: Build charm
uses: canonical/data-platform-workflows/.github/workflows/[email protected]
release-charm:
name: Release charm
needs:
- ci-tests
- build
uses: canonical/data-platform-workflows/.github/workflows/[email protected]
with:
channel: 6/edge
artifact-name: ${{ needs.build.outputs.artifact-name }}
secrets:
charmhub-token: ${{ secrets.CHARMHUB_TOKEN }}
permissions:
contents: write # Needed to create GitHub release
release-libraries:
name: Release libraries
runs-on: ubuntu-latest
needs:
- ci-tests
- release-charm
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Release any bumped charm libs
uses: canonical/charming-actions/[email protected]
with:
credentials: "${{ secrets.CHARMHUB_TOKEN }}"
github-token: "${{ secrets.GITHUB_TOKEN }}"