Skip to content

Commit

Permalink
feat: rewrite it in rust
Browse files Browse the repository at this point in the history
  • Loading branch information
Phosphorus-M committed Jan 21, 2024
0 parents commit df79dec
Show file tree
Hide file tree
Showing 6 changed files with 2,384 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: deploy

on:
push:
branches:
- "main"
- "RIIR"
repository_dispatch:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
# fetch submodules recursively
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- uses: shuttle-hq/deploy-action@main
with:
deploy-key: ${{ secrets.SHUTTLE_DEPLOY_KEY }}
allow-dirty: "true"
no-test: "true"
secrets: |
TELEGRAM_TOKEN = '${{ secrets.TELEGRAM_TOKEN }}'
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
.shuttle-storage
Secrets*.toml
Loading

0 comments on commit df79dec

Please sign in to comment.