From f6e259c7c384ba2cc8f5d214a861ff397c479c83 Mon Sep 17 00:00:00 2001 From: "aaron@nanu-c.org" Date: Wed, 25 Oct 2023 10:03:02 +0200 Subject: [PATCH] ci: fix extract clickable version --- .github/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 95a17882b..a5d5c989c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,6 +2,10 @@ name: Axolotl release pipeline on: workflow_dispatch: + push: + # Pattern matched against refs/tags + tags: + - '*' jobs: build: @@ -40,8 +44,8 @@ jobs: - name: Get click version id: get_click_version run: | - ls -lah /build-artifacts && find /build-artifacts - echo "::set-output name=version::$(ls ./build-artifacts/Axolotl-Clickable/x86_64-linux-gnu/app/*amd64.click | cut --delimiter="_" --fields=2)" + ls -lah ./build-artifacts && find ./build-artifacts + echo "::set-output name=version::$(ls ./build-artifacts/Axolotl-Clickable/aarch64-linux-gnu/app/*arm64.click | cut --delimiter="_" --fields=2)" - name: Set click version run: |