From 531ef3b80669f5bf1e1e578593a7d86f51b08b25 Mon Sep 17 00:00:00 2001 From: rothfahl Date: Tue, 3 Oct 2023 16:32:21 +0200 Subject: [PATCH] zip artefact: fix path --- .github/workflows/zip-wp-plugin.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/zip-wp-plugin.yml b/.github/workflows/zip-wp-plugin.yml index e5e6ea9..98b658a 100644 --- a/.github/workflows/zip-wp-plugin.yml +++ b/.github/workflows/zip-wp-plugin.yml @@ -14,10 +14,11 @@ jobs: with: type: 'zip' filename: "wp-srf-weather-widget.zip" - path: "./wp-plugin" + directory: "./wp-plugin" + path: "./srf-weather-widget" - name: Upload zip uses: actions/upload-artifact@v3 with: - name: 'wp-srf-weather-widget.zip' - path: '/wp-plugin/wp-srf-weather-widget.zip' + name: 'wp-srf-weather-widget' + path: './wp-plugin/wp-srf-weather-widget.zip'