From c2f584a1eabcea1800cad0b65b6cd5d95d15bbf7 Mon Sep 17 00:00:00 2001 From: Dengke Tang Date: Mon, 27 Feb 2023 15:21:49 -0800 Subject: [PATCH] remove release.yml and leave it as todo to follow up quick --- .github/workflows/release.yml | 36 ----------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 97174b2..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Release PECL Preparation - -on: - release: - types: [published] - workflow_dispatch: - -jobs: - package: - name: Prepare package - runs-on: macos-latest - - steps: - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.0' - - - name: Checkout Source - uses: actions/checkout@v3 - with: - submodules: recursive - fetch-depth: 0 - - - name: Get release tag - uses: awslabs/aws-crt-builder/.github/actions/release-tag@main - id: tag - - - name: Prepare Package Script - run: dev-scripts/prepare_release.sh --name aws-crt --user aws-crt --email aws-sdk-common-runtime@amazon.com --version ${{ steps.tag.outputs.release_tag }} --notes NOTES - - - name: Upload artifacts - uses: actions/upload-artifact@v3 - with: - name: pecl_package_${{ steps.tag.outputs.release_tag }} - path: awscrt-${{ steps.tag.outputs.release_tag }}.tgz