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 }}