Release #155
This file contains hidden or 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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| releaseType: | |
| type: choice | |
| description: Release type | |
| required: true | |
| default: dry-run | |
| options: | |
| - release | |
| - dry-run | |
| jobs: | |
| authorize: | |
| name: Authorize | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check branch protection | |
| run: | | |
| if [ "${{ github.event.inputs.releaseType }}" == "dry-run" ]; then | |
| echo "✅ Branch check skipped: dry-run mode allows any branch" | |
| echo "Current branch: ${{ github.ref_name }}" | |
| exit 0 | |
| fi | |
| if [ "${{ github.ref_name }}" != "v8.x" ]; then | |
| echo "❌ This workflow can only be triggered from the v8.x branch." | |
| echo "Current branch: ${{ github.ref_name }}" | |
| exit 1 | |
| fi | |
| echo "✅ Branch check passed: running from v8.x" | |
| - name: ${{ github.actor }} permission check to do a release | |
| uses: 'lannonbr/repo-permission-check-action@2.0.2' | |
| with: | |
| permission: 'write' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| needs: [authorize] | |
| permissions: | |
| id-token: write # Required for OIDC | |
| contents: write | |
| env: | |
| GIT_AUTHOR_NAME: amplitude-sdk-bot | |
| GIT_AUTHOR_EMAIL: amplitude-sdk-bot@users.noreply.github.com | |
| GIT_COMMITTER_NAME: amplitude-sdk-bot | |
| GIT_COMMITTER_EMAIL: amplitude-sdk-bot@users.noreply.github.com | |
| strategy: | |
| matrix: | |
| node-version: [24.x] # Ensure npm 11.5.1 or later is installed for OIDC | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| role-to-assume: arn:aws:iam::358203115967:role/github-actions-role | |
| aws-region: us-west-2 | |
| - name: node_modules cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.8.x' | |
| - name: Install boto3 for deploy_s3.python | |
| run: pip install boto3==1.14.63 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Run tests | |
| run: make test | |
| - name: Release --dry-run # Uses release.config.js | |
| if: ${{ github.event.inputs.releaseType == 'dry-run' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }} | |
| run: npx semantic-release --dry-run | |
| - name: Release # Uses release.config.js | |
| if: ${{ github.event.inputs.releaseType == 'release' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }} | |
| run: npx semantic-release |