diff --git a/.github/workflows/release-appkit.yaml b/.github/workflows/release-appkit.yaml new file mode 100644 index 00000000..f761a958 --- /dev/null +++ b/.github/workflows/release-appkit.yaml @@ -0,0 +1,32 @@ +# Stub workflow to enable dispatch from feature branches +# Real implementation is on chore/ci-improvements branch +name: Release AppKit + +on: + workflow_dispatch: + inputs: + platform: + description: 'Platform to build' + required: true + type: choice + options: + - android + - ios + release-type: + description: 'Release type' + required: true + type: choice + options: + - internal + - production + e2e-build: + description: 'Build for E2E tests (uploads to S3 for AppKit SDK repo tests)' + required: false + type: boolean + default: false + +jobs: + stub: + runs-on: ubuntu-latest + steps: + - run: echo "This is a stub. Run from feature branch with --ref" diff --git a/.github/workflows/release-pos.yaml b/.github/workflows/release-pos.yaml new file mode 100644 index 00000000..eddbba68 --- /dev/null +++ b/.github/workflows/release-pos.yaml @@ -0,0 +1,27 @@ +# Stub workflow to enable dispatch from feature branches +# Real implementation is on chore/ci-improvements branch +name: Release Mobile POS + +on: + workflow_dispatch: + inputs: + platform: + description: 'Platform to build' + required: true + type: choice + options: + - android + - ios + variant: + description: 'App variant' + required: true + type: choice + options: + - production + - legacy + +jobs: + stub: + runs-on: ubuntu-latest + steps: + - run: echo "This is a stub. Run from feature branch with --ref" diff --git a/.github/workflows/release-walletkit.yaml b/.github/workflows/release-walletkit.yaml new file mode 100644 index 00000000..f24e645e --- /dev/null +++ b/.github/workflows/release-walletkit.yaml @@ -0,0 +1,32 @@ +# Stub workflow to enable dispatch from feature branches +# Real implementation is on chore/ci-improvements branch +name: Release WalletKit + +on: + workflow_dispatch: + inputs: + platform: + description: 'Platform to build' + required: true + type: choice + options: + - android + - ios + release-type: + description: 'Release type' + required: true + type: choice + options: + - internal + - production + e2e-build: + description: 'Build for E2E tests (uploads to S3 for AppKit SDK repo tests)' + required: false + type: boolean + default: false + +jobs: + stub: + runs-on: ubuntu-latest + steps: + - run: echo "This is a stub. Run from feature branch with --ref"