From 23b2eafbca2731973f34a2ea895ddc495c192482 Mon Sep 17 00:00:00 2001 From: lajbel Date: Thu, 2 Jan 2025 23:46:00 -0300 Subject: [PATCH] chore: trying stuff --- .github/workflows/deploy.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c272ada..7ce2303 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,25 +10,13 @@ jobs: with: submodules: true fetch-tags: true - - name: Checkout new tags to branches - id: checkout-tags - uses: chachako/checkout-tags@v1 - with: - filter: v[4000]\.. - base: "kaplayjs/kaplay" - - name: Find Tag - id: tagger - uses: digital-ai/query-tag-action@v2 - with: - include: 'v4000*' - commit-ish: 'HEAD' - exact-match: 'true' - - name: Checkout submodule to v4000 run: | cd kaplay - git fetch --tags - git checkout ${{steps.tagger.outputs.tag}}' + git fetch --tags + TAG=$(git tag --list '4000*' --sort=-v:refname | head -n 1) + echo $TAG + git checkout $TAG - name: Setup PNPM uses: pnpm/action-setup@v4 - name: Deploy app