From 65da181adab58f1c52716d48f31f56d6a3e4c50a Mon Sep 17 00:00:00 2001 From: Vadim Date: Tue, 27 Jun 2023 12:02:14 +0200 Subject: [PATCH] removed ls --- .github/workflows/cd_prod.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/cd_prod.yml b/.github/workflows/cd_prod.yml index c245023..f2f8ca2 100644 --- a/.github/workflows/cd_prod.yml +++ b/.github/workflows/cd_prod.yml @@ -130,9 +130,6 @@ jobs: with: submodules: recursive - - name: LS - run: ls - - name: Download apk uses: actions/download-artifact@v3 with: @@ -143,19 +140,13 @@ jobs: with: name: m3_lightmeter_bundle - - name: LS - run: ls - - name: Rename artifacts run: | mv app-prod-release.apk m3_lightmeter.apk mv app-prod-release.aab m3_lightmeter.aab - - name: LS - run: ls - - # - uses: ncipollo/release-action@v1.12.0 - # with: - # artifacts: "/home/runner/work/m3_lightmeter/m3_lightmeter/m3_lightmeter_apk, /home/runner/work/m3_lightmeter/m3_lightmeter/m3_lightmeter_bundle" - # skipIfReleaseExists: true - # tag: "v${{ github.event.inputs.version }}" + - uses: ncipollo/release-action@v1.12.0 + with: + artifacts: "m3_lightmeter.apk, m3_lightmeter.aab" + skipIfReleaseExists: true + tag: "v${{ github.event.inputs.version }}"