Skip to content

Commit

Permalink
ci: fix extract clickable version
Browse files Browse the repository at this point in the history
  • Loading branch information
nanu-c committed Oct 25, 2023
1 parent 2e631d0 commit f6e259c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Expand Up @@ -2,6 +2,10 @@ name: Axolotl release pipeline

on:
workflow_dispatch:
push:
# Pattern matched against refs/tags
tags:
- '*'

jobs:
build:
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit f6e259c

Please sign in to comment.