Skip to content

Commit

Permalink
ci: deploy secret updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Tguntenaar committed Nov 14, 2024
1 parent b5f2b64 commit 2ca7b67
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/fly-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
branches:
- main

# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

jobs:
deploy:
name: Deploy Devhub
Expand Down Expand Up @@ -40,12 +37,12 @@ jobs:
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

# deploy-templar:
# name: Deploy Templar
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: superfly/flyctl-actions/setup-flyctl@master
# - run: flyctl deploy --remote-only -c fly.templar.toml
# env:
# FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
deploy-templar:
name: Deploy Templar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
- run: flyctl deploy --remote-only -c fly.templar.toml
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
6 changes: 3 additions & 3 deletions src/db/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ impl DB {
"REVIEW" => Some("REVIEW".to_string()),
"APPROVED" => Some("APPROVED".to_string()),
"REJECTED" => Some("REJECTED".to_string()),
"CANCELED" => Some("CANCELLED".to_string()),
"APPROVED_CONDITIONALLY" => Some("CONDITIONALLY".to_string()),
"PAYMENT_PROCESSING" => Some("PAYMENT".to_string()),
"CANCELLED" => Some("CANCELLED".to_string()),
"CONDITIONAL" => Some("CONDITIONALLY".to_string()),
"PAYMENT" => Some("PAYMENT".to_string()),
"FUNDED" => Some("FUNDED".to_string()),
_ => None,
});
Expand Down

0 comments on commit 2ca7b67

Please sign in to comment.