Skip to content

fix: clippy suggestion to use unwrap_or_else #14

fix: clippy suggestion to use unwrap_or_else

fix: clippy suggestion to use unwrap_or_else #14

Workflow file for this run

name: Deploy to production
on:
workflow_dispatch:
push:
branches:
- main
paths:
- ".github/workflows/deploy.yml"
- "wrangler.toml"
- "src/**/**.rs"
- "Cargo.toml"
- "Cargo.lock"
- "rust-toolchain.toml"
jobs:
check:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: checks
run: |
cargo fmt --all --check
deploy:
needs: [check]
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Install worker-build
run: |
cargo install worker-build
- name: Deploy
uses: cloudflare/wrangler-action@v3
env:
ENDPOINT: ${{ secrets.ENDPOINT }}
GOOGLE_APIKEY: ${{ secrets.GOOGLE_APIKEY }}
GOOGLE_CALENDAR_ID: ${{ secrets.GOOGLE_CALENDAR_ID }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
BOT_CHANNEL_ID: ${{ secrets.BOT_CHANNEL_ID }}
ROLES: ${{ secrets.ROLES }}
BOT_APIKEY: ${{ secrets.BOT_APIKEY }}
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
secrets: |
ENDPOINT
BOT_APIKEY
GOOGLE_APIKEY
GOOGLE_CALENDAR_ID
CHANNEL_ID
BOT_CHANNEL_ID
ROLES