Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- .
- tests/integration/application-charm
name: Build charm
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v32.1.0
uses: canonical/data-platform-workflows/.github/workflows/build_charm.yaml@v32.2.2
with:
path-to-charm-directory: ${{ matrix.path }}
cache: false
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,17 @@ on:
- '**.md'

jobs:
tag:
name: Create charm refresh compatibility version git tag
uses: canonical/data-platform-workflows/.github/workflows/tag_charm_edge.yaml@v32.2.2
with:
track: '5'
permissions:
contents: write # Needed to create git tag

ci-tests:
needs:
- tag
uses: ./.github/workflows/ci.yaml
secrets: inherit
permissions:
Expand All @@ -23,10 +33,11 @@ jobs:
release:
name: Release charm
needs:
- tag
- ci-tests
uses: canonical/data-platform-workflows/.github/workflows/release_charm.yaml@v29.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can also update this one to

canonical/data-platform-workflows/.github/workflows/release_charm_edge.yaml@v32.2.2

with:
channel: 5/edge
track: ${{ needs.tag.outputs.track }}
artifact-prefix: ${{ needs.ci-tests.outputs.artifact-prefix }}
secrets:
charmhub-token: ${{ secrets.CHARMHUB_TOKEN }}
Expand Down
Loading