Skip to content

Commit

Permalink
chore: fix release asset generator (#1886)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie committed Jul 23, 2020
1 parent 7b57cd7 commit e03170a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/asset-release.yml
Expand Up @@ -44,14 +44,13 @@ jobs:
- name: Create Archive
run: |
zip -r ${fileName} . &&
zip -d ${fileName} ".git*" &&
zip -d ${fileName} "tests*" &&
zip -d ${fileName} "docs*" &&
zip -d ${fileName} ".travis.yml" &&
zip -d ${fileName} "phpcs.xml.dist" &&
zip -d ${fileName} "phpunit.xml.dist" &&
zip -d ${fileName} "tests*" &&
zip -d ${fileName} "examples*"
zip -d ${fileName} ".git*" || true &&
zip -d ${fileName} "tests*" || true &&
zip -d ${fileName} "docs*" || true &&
zip -d ${fileName} "phpcs.xml.dist" || true &&
zip -d ${fileName} "phpunit.xml.dist" || true &&
zip -d ${fileName} "tests*" || true &&
zip -d ${fileName} "examples*" || true
env:
fileName: google-api-php-client-${{ steps.tagName.outputs.tag }}-PHP${{ matrix.php }}.zip

Expand Down

0 comments on commit e03170a

Please sign in to comment.