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_azure_pipelines

trigger:
  - main
pool:
  name: Default
  vmImage: ubuntu-latest
steps:
  - script: |
        curl -fsSL https://deno.land/x/install/install.sh | sh
        export DENO_INSTALL="$HOME/.deno"
        export PATH="$DENO_INSTALL/bin:$PATH"
    displayName: Install Deno
  - script: deno install -A -r https://cli.fluentci.io -n fluentci
    displayName: Setup Fluent CI CLI
  - script: |
        curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.1 sh
        sudo mv bin/dagger /usr/local/bin
        dagger version
    displayName: Setup Dagger
  - script: fluentci run wasmer_pipeline
    displayName: Run Dagger Pipelines
variables:
  WASMER_TOKEN: $(WASMER_TOKEN)