OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
aws-ses
/
vendor
/
aws
/
aws-crt-php
/
.github
/
workflows
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2024 10:51:37 AM
rwxr-xr-x
📄
ci.yml
5.85 KB
08/14/2024 10:51:37 AM
rw-r--r--
📄
closed-issue-message.yml
744 bytes
08/14/2024 10:51:37 AM
rw-r--r--
📄
handle-stale-discussions.yml
444 bytes
08/14/2024 10:51:37 AM
rw-r--r--
📄
lint.yml
612 bytes
08/14/2024 10:51:37 AM
rw-r--r--
📄
release.yml
1.09 KB
08/14/2024 10:51:37 AM
rw-r--r--
📄
stale_issue.yml
2.45 KB
08/14/2024 10:51:37 AM
rw-r--r--
Editing: release.yml
Close
name: Release PECL Preparation on: release: types: [published] workflow_dispatch: jobs: package: name: Prepare package runs-on: ubuntu-latest steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.0' - name: Checkout Source uses: actions/checkout@v3 with: fetch-depth: 0 submodules: recursive - name: Prepare Package Script id: prepare-package # Update the version in code and generate the package. run: | version_with_v=$(git describe --tags --abbrev=0) VERSION=$(echo ${version_with_v} | cut -f2 -dv) echo "VERSION=${VERSION}" >> $GITHUB_OUTPUT python3 dev-scripts/prepare_pecl_release.py --name aws-crt --user aws-crt --email aws-sdk-common-runtime@amazon.com --version ${VERSION} - name: Upload artifacts uses: actions/upload-artifact@v3 with: name: pecl_package_${{ steps.prepare-package.outputs.VERSION }} path: awscrt-${{ steps.prepare-package.outputs.VERSION }}.tgz