Skip to content

Workflow file for this run

name: Deploy Compute Application
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.54.0 # current Rust toolchain for Compute
target: wasm32-wasi # WebAssembly target
- name: Deploy to Compute
uses: fastly/compute-actions@v2
env:
FASTLY_API_TOKEN: ${{ secrets.FASTLY_API_TOKEN }}