ci: Rename pr.yaml to check.yaml (#20) #2
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
# This is a template `release.yaml` file for ops charms | ||
# This file is managed by bootstack-charms-spec and should not be modified | ||
# within individual charm repos. https://launchpad.net/bootstack-charms-spec | ||
name: Release to Edge | ||
on: | ||
push: | ||
branches: [ master, main ] | ||
concurrency: | ||
group: release | ||
cancel-in-progress: true | ||
jobs: | ||
check: | ||
uses: ./.github/workflows/check.yaml | ||
Check failure on line 17 in .github/workflows/release.yaml GitHub Actions / .github/workflows/release.yamlInvalid workflow file
|
||
release: | ||
needs: check | ||
uses: canonical/bootstack-actions/.github/workflows/charm-release.yaml@v2 | ||
secrets: inherit | ||
with: | ||
channel: "latest/edge" | ||
upload-image: false |