From e1ce66efa2bfbcdcc1575af883b91c12c176f541 Mon Sep 17 00:00:00 2001 From: Nicolas JUEN Date: Wed, 5 Jun 2024 10:56:58 +0200 Subject: [PATCH] Fix: Release file syntax --- .github/workflows/release.yml | 55 +++++++++++++++++------------------ 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 773019f..570cddd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,34 +8,33 @@ jobs: name: New release runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v3 + - name: Checkout code + uses: actions/checkout@v3 - - name: Build project PHP - id: compile-php - uses: shivammathur/setup-php@v2 - with: - php-version: '8.0' - run: | - composer validate && composer install --prefer-dist --no-dev --ignore-platform-reqs -o + - name: Build project PHP + id: compile-php + uses: shivammathur/setup-php@v2 + with: + php-version: '8.0' + - run: | + composer validate && composer install --prefer-dist --no-dev --ignore-platform-reqs -o - - name: WordPress Plugin Deploy - id: deploy - uses: 10up/action-wordpress-plugin-deploy@stable - with: - generate-zip: true - env: - SVN_USERNAME: ${{ secrets.SVN_USERNAME }} - SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} - - - name: Upload release asset - id: upload-asset - uses: actions/upload-release-asset@v1 - 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 + - name: WordPress Plugin Deploy + id: deploy + uses: 10up/action-wordpress-plugin-deploy@stable + with: + generate-zip: true + env: + SVN_USERNAME: ${{ secrets.SVN_USERNAME }} + SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} + - name: Upload release asset + id: upload-asset + uses: actions/upload-release-asset@v1 + 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 \ No newline at end of file