From f157afeb30c5fcf493d1432129d7940331154d33 Mon Sep 17 00:00:00 2001 From: krawieck Date: Mon, 26 Oct 2020 22:22:44 +0100 Subject: [PATCH] Revert "Gh actions trigger" This reverts commit 86d53f277ce25d6a893c626efe567dffab3cd0ef. --- .github/workflows/ci.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 696fee1..e369716 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,15 +12,9 @@ jobs: CI: name: CI runs-on: ubuntu-latest - outputs: - linuxReleaseName: lemmur-${{ steps.vars.outputs.tag }}-x86_64-linux steps: - uses: actions/checkout@v2 - - name: Set variables - id: vars - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - - uses: actions/setup-java@v1 with: java-version: "12.x" @@ -67,13 +61,11 @@ jobs: run: | flutter build linux cd build/linux/release/ - tar -czf ${{ needs.CI.outputs.linuxReleaseName }}.tar.gz * + zip -r linux.zip * release: name: Release - needs: - - linux-build - - CI + needs: linux-build runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') && github.repository == 'krawieck/lemmur' steps: @@ -82,7 +74,6 @@ jobs: with: files: | build/app/outputs/apk/release/*.apk - build/linux/release/${{ needs.CI.outputs.linuxReleaseName }}.tar.gz + build/linux/release/linux.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -#