Move ZIP -x to end of command #8
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| tags: | |
| - '[0-9].[0-9]*' | |
| name: Create Release | |
| jobs: | |
| build: | |
| name: Release | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup PHP with composer v2 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| - name: Composer Install | |
| run: composer install --no-dev | |
| - name: Pack Release ZIP | |
| run: | | |
| mkdir -p dist/upload | |
| cd dist | |
| cp ../install.xml . | |
| cp -r ../admin ../catalog ../system upload/ | |
| zip -9r qcp.ocmod.zip . -x '*.git*' | |
| - name: Get the tag name | |
| id: get_tag | |
| run: echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//} | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ github.ref }} | |
| release_name: Release ${{ github.ref }} | |
| draft: false | |
| prerelease: false | |
| - name: Upload Release | |
| id: upload-release-asset | |
| uses: actions/upload-release-asset@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| upload_url: ${{ steps.create_release.outputs.upload_url }} | |
| asset_path: ./dist/qcp.ocmod.zip | |
| asset_name: opencart-qcp-v${{ steps.get_tag.outputs.TAG }}.ocmod.zip | |
| asset_content_type: application/zip |