From c0e0ff0f175c2b394cbc9657d7d658e2f9dde16a Mon Sep 17 00:00:00 2001 From: Frugan Date: Tue, 18 Jun 2024 18:41:20 +0200 Subject: [PATCH] build: debug --- .github/workflows/ci.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2de67e5..e50ffc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,17 +98,15 @@ jobs: - name: Run Makefile 'deploy' task if: startsWith(github.ref, 'refs/tags/v') && github.ref_type == 'tag' && ${{ env.IS_LAST_JOB }} run: | - make deploy \ - MODE=production \ - PLUGIN_NAME=${{ github.event.repository.name }} \ - PLUGIN_VERSION=${{ github.ref_name }} + echo ${{ github.ref }} + echo ${{ github.ref_type }} - - name: Save artifact - if: startsWith(github.ref, 'refs/tags/v') && github.ref_type == 'tag' && ${{ env.IS_LAST_JOB }} - uses: actions/upload-artifact@v4 - with: - name: build-output - path: dist/${{ github.event.repository.name }}-${{ github.ref_name }}.zip + #- name: Save artifact + # if: startsWith(github.ref, 'refs/tags/v') && github.ref_type == 'tag' && ${{ env.IS_LAST_JOB }} + # uses: actions/upload-artifact@v4 + # with: + # name: build-output + # path: dist/${{ github.event.repository.name }}-${{ github.ref_name }}.zip - name: Run Makefile 'down' task run: make down