Bump version to v0.1.1

This commit is contained in:
Monte Hellawell 2020-11-18 15:23:45 +00:00 committed by GitHub
parent 37b66802f1
commit c25e01d748
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ This GitHub action exposes the zip command for use in building/archiving. It is
Zipping the directory `dir` into `dir.zip`: Zipping the directory `dir` into `dir.zip`:
```yaml ```yaml
- uses: montudor/action-zip@v0.1.0 - uses: montudor/action-zip@v0.1.1
with: with:
args: zip -qq -r dir.zip dir args: zip -qq -r dir.zip dir
``` ```
@ -15,7 +15,7 @@ Zipping the directory `dir` into `dir.zip`:
Unzipping a `dir.zip` file: Unzipping a `dir.zip` file:
```yaml ```yaml
- uses: montudor/action-zip@v0.1.0 - uses: montudor/action-zip@v0.1.1
with: with:
args: unzip -qq dir.zip -d dir args: unzip -qq dir.zip -d dir
``` ```
@ -24,7 +24,7 @@ Zipping a folder from a different work dir
```yaml ```yaml
- name: Install zip - name: Install zip
uses: montudor/action-zip@v0.1.0 uses: montudor/action-zip@v0.1.1
- name: Zip output - name: Zip output
run: zip -qq -r function.zip dist node_modules package.json run: zip -qq -r function.zip dist node_modules package.json
@ -44,7 +44,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- run: composer install --ansi --no-progress --no-interaction --prefer-dist - run: composer install --ansi --no-progress --no-interaction --prefer-dist
- uses: montudor/action-zip@v0.1.0 - uses: montudor/action-zip@v0.1.1
with: with:
args: zip -qq -r vendor.zip vendor args: zip -qq -r vendor.zip vendor
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
@ -58,7 +58,7 @@ jobs:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v2
with: with:
name: vendor.zip name: vendor.zip
- uses: montudor/action-zip@v0.1.0 - uses: montudor/action-zip@v0.1.1
with: with:
args: unzip -qq vendor.zip -d vendor args: unzip -qq vendor.zip -d vendor
- run: ./vendor/bin/phpunit - run: ./vendor/bin/phpunit
@ -70,7 +70,7 @@ jobs:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v2
with: with:
name: vendor.zip name: vendor.zip
- uses: montudor/action-zip@v0.1.0 - uses: montudor/action-zip@v0.1.1
with: with:
args: unzip -qq vendor.zip -d vendor args: unzip -qq vendor.zip -d vendor
- run: ./vendor/bin/infection - run: ./vendor/bin/infection