Skip to main content
Home

Built and signed on GitHub Actions

Works with
This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
•JSR Score70%•
Downloads48/wk
•
Published2 years ago (0.4.0)

🧩 A ready to use CI/CD Pipeline for building and deploying to Wasmer Edge

# Do not edit this file directly. It is generated by https://deno.land/x/fluent_circleci

version: 2.1
jobs:
  deploy:
    steps:
      - checkout
      - run: sudo apt-get update && sudo apt-get install -y curl unzip
      - run: |
          curl -fsSL https://deno.land/x/install/install.sh | sh
          export DENO_INSTALL="$HOME/.deno"
          export PATH="$DENO_INSTALL/bin:$PATH"
      - run: deno install -A -r https://cli.fluentci.io -n fluentci
      - run: |
          curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.1 sh
          sudo mv bin/dagger /usr/local/bin
          dagger version
      - run:
          name: Run Dagger Pipelines
          command: fluentci run wasmer_pipeline
    machine:
      image: ubuntu-2004:2023.07.1
    environment:
      WASMER_TOKEN: ${{wasmer.WASMER_TOKEN}}
workflows:
  dagger:
    jobs:
      - deploy