-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f5f7aa
commit f6392a0
Showing
322 changed files
with
63 additions
and
65,439 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/.git | ||
/.github | ||
/.distignore | ||
/cos-sdk-v5/vendor/qcloud/cos-sdk-v5/sample | ||
/cos-sdk-v5/vendor/qcloud/cos-sdk-v5/.github | ||
/cos-sdk-v5/composer.lock |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Deploy to WordPress.org | ||
on: | ||
pull_request: | ||
release: | ||
types: [ published ] | ||
jobs: | ||
tag: | ||
name: New release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '7.0' | ||
tools: composer | ||
- name: Build | ||
run: | | ||
composer install -o --no-dev | ||
working-directory: cos-sdk-v5 | ||
- name: Set Version | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
echo "VERSION=ci" >> $GITHUB_ENV | ||
- name: WordPress Plugin Deploy | ||
id: deploy | ||
uses: 10up/action-wordpress-plugin-deploy@stable | ||
with: | ||
dry-run: ${{ github.event_name == 'pull_request' }} | ||
generate-zip: ${{ github.event_name == 'release' }} | ||
env: | ||
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} | ||
SVN_USERNAME: ${{ secrets.SVN_USERNAME }} | ||
SLUG: sync-qcloud-cos | ||
- name: Upload release asset | ||
uses: actions/upload-release-asset@v1 | ||
if: github.event_name == 'release' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: ${{ steps.deploy.outputs.zip-path }} | ||
asset_name: ${{ github.event.repository.name }}.zip | ||
asset_content_type: application/zip |
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
Oops, something went wrong.