Deploy: 85edd887622ad0a1e7a9a96e7a73794202e3d323 ➠ latest: ❱❱ infra ❱❱ app #19
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
name: ⚙️ Deploy | |
run-name: "Deploy: ${{ github.sha }} ➠ ${{ inputs.version-type }}:${{ inputs.version-tag }}${{ (!inputs.deploy-infra && !inputs.deploy-app) && ' 👀 deploy nothing' || ''}}${{ inputs.deploy-infra && ' ❱❱ infra' || '' }}${{ inputs.deploy-app && ' ❱❱ app' || '' }}" | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy-infra: | |
description: "Deploy Infra" | |
default: true | |
required: true | |
type: boolean | |
deploy-app: | |
description: "Deploy App" | |
default: true | |
required: true | |
type: boolean | |
stage: | |
description: 'Target Environment' | |
type: choice | |
options: | |
- staging | |
- prod | |
default: staging | |
required: true | |
version-type: | |
description: "Release Version" | |
type: choice | |
options: | |
- latest | |
- current | |
- manual | |
default: 'latest' | |
required: true | |
version-tag: | |
description: "Release Version Tag (for manual version)" | |
type: string | |
default: '' | |
concurrency: deploy | |
permissions: | |
contents: write | |
checks: write | |
id-token: write | |
packages: write | |
jobs: | |
get_deployed_version: | |
name: Lookup Version | |
if: ${{ inputs.version-type == 'current' }} | |
secrets: inherit | |
uses: WalletConnect/ci_workflows/.github/workflows/[email protected] | |
with: | |
task-name: ${{ vars.IMAGE_NAME }} | |
aws-region: ${{ vars.AWS_REGION }} | |
aws-role-arn: ${{vars.AWS_ROLE_PROD}} | |
run-group: ${{ vars.RUN_GROUP }} | |
select_version: | |
name: Select Version | |
needs: [ get_deployed_version ] | |
if: ${{ always() && !cancelled() && !failure() }} | |
runs-on: | |
group: ${{ vars.RUN_GROUP }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Select target version | |
id: select_version | |
run: | | |
if [ "${{ inputs.version-type }}" == "current" ]; then | |
echo "version=${{ needs.get_deployed_version.outputs.version }}" >> "$GITHUB_OUTPUT" | |
elif [ "${{ inputs.version-type }}" == "latest" ]; then | |
echo "version=$(git tag | sort --version-sort | tail -n1)" >> "$GITHUB_OUTPUT" | |
else | |
echo "version=${{ inputs.version-tag }}" >> "$GITHUB_OUTPUT" | |
fi | |
outputs: | |
version: ${{ steps.select_version.outputs.version }} | |
cd: | |
name: CD | |
uses: ./.github/workflows/sub-cd.yml | |
needs: [ select_version ] | |
if: ${{ always() && !cancelled() && !failure() }} | |
secrets: inherit | |
with: | |
deploy-infra: ${{ inputs.deploy-infra }} | |
deploy-app: ${{ inputs.deploy-app }} | |
deploy-prod: ${{ inputs.stage == 'prod' }} | |
version: ${{ needs.select_version .outputs.version }} |