From acc8a6a98f4ddbb2704d70806907e3fe151ebe1c Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Wed, 8 Nov 2023 03:21:55 +0000 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 4 +++- .github/workflows/release.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 84f69a3..79f7203 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,4 +13,6 @@ jobs: - name: Setup Fluent CI uses: fluentci-io/setup-fluentci@v1 - name: Run Dagger Pipelines - run: fluentci run deno_pipeline fmt lint + run: | + deno install -A -r -f -q https://deno.land/x/fluentci@v0.6.9/main.ts -n fluentci + fluentci run deno_pipeline fmt lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 800df06..0f6e45b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,9 @@ jobs: - name: Set env run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Build - run: fluentci run . compile + run: | + deno install -A -r -f -q https://deno.land/x/fluentci@v0.6.9/main.ts -n fluentci + fluentci run . compile env: TAG: ${{ env.RELEASE_VERSION }} TARGET: ${{ matrix.target }}