Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: create ci for kitkat #4035

Merged
merged 10 commits into from
Sep 27, 2023
Next Next commit
chore: create ci for kitkat
  • Loading branch information
tomjohnburton committed Sep 20, 2023

Verified

This commit was signed with the committer’s verified signature.
commit 8f9d8dff751d081dc3164a345255779eaeb51e44
37 changes: 37 additions & 0 deletions .github/workflows/release-kitkat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release Chainflip KitKat
on:
workflow_dispatch:

concurrency:
group: ${{ github.ref }}-release-kitkat
cancel-in-progress: true

jobs:
check-versions:
uses: ./.github/workflows/_03_check_versions.yml
bins:
needs: [check-versions]
uses: ./.github/workflows/_02_retrieve-bins.yml
secrets: inherit
docker:
needs: [bins]
uses: ./.github/workflows/_24_docker.yml
with:
network: kitkat
environment: prod
publish_public_images: true
secrets: inherit
package:
needs: [bins]
uses: ./.github/workflows/_25_package.yml
with:
network: "kitkat"
environment: prod
secrets: inherit
publish:
needs: [package]
uses: ./.github/workflows/_30_publish.yml
with:
version: "kitkat/"
environment: prod
secrets: inherit