From 458dfd69e348eca6295fdc3a151ef871b3ebdd52 Mon Sep 17 00:00:00 2001 From: Rodolfo Berrios <20590102+rodber@users.noreply.github.com> Date: Thu, 7 Oct 2021 19:56:00 -0300 Subject: [PATCH] rename -dev to -lite --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 992c4ae..48f2527 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: uses: thedoctor0/zip-release@master with: type: "zip" - filename: "${{ steps.get_version.outputs.VERSION }}-dev.zip" + filename: "${{ steps.get_version.outputs.VERSION }}-lite.zip" exclusions: "/*.git/* /*.github/*" - name: Install dependencies @@ -57,12 +57,12 @@ jobs: with: type: "zip" filename: "${{ steps.get_version.outputs.VERSION }}.zip" - exclusions: "/*.git/* /*.github/* ${{ steps.get_version.outputs.VERSION }}-dev.zip" + exclusions: "/*.git/* /*.github/* ${{ steps.get_version.outputs.VERSION }}-lite.zip" - name: Upload artifacts uses: ncipollo/release-action@v1 with: allowUpdates: true removeArtifacts: true - artifacts: "${{ steps.get_version.outputs.VERSION }}.zip,${{ steps.get_version.outputs.VERSION }}-dev.zip" + artifacts: "${{ steps.get_version.outputs.VERSION }}.zip,${{ steps.get_version.outputs.VERSION }}-lite.zip" token: ${{ secrets.GITHUB_TOKEN }}