diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6166d95..6abc7e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,7 @@ jobs: with: php-version: '5.6' - name: Pack Release ZIP - run: | - mkdir -p dist/upload - cd dist - zip -9r oxid_qcs.zip modules -x '*.git*' + run: zip -9r oxid_qcs.zip modules - name: Get the tag name id: get_tag run: echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//} @@ -41,6 +38,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./dist/oxid_qcs.zip + asset_path: ./oxid_qcs.zip asset_name: oxid-qcs-v${{ steps.get_tag.outputs.TAG }}.zip asset_content_type: application/zip