Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Nov 8, 2023
1 parent f9783b0 commit acc8a6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit acc8a6a

Please sign in to comment.