Skip to content

Commit

Permalink
ci: dink-bot (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
keroxp authored Nov 9, 2019
1 parent 148c6e7 commit b9aff14
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
1 change: 1 addition & 0 deletions .denov
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.23.0
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
- uses: actions/checkout@v1
- name: Install Deno
run: |
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- v0.20.0
DENO_VERSION=$(cat .denov)
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- ${DENO_VERSION}
- name: Run Tests
run: |
export PATH=$HOME/.deno/bin:$PATH
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Bump

on:
schedule:
- cron: 0 13 * * *
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install Deno
run: |
DENO_VERSION=$(cat .denov)
curl -fsSL https://deno.land/x/install/install.sh | bash -s -- ${DENO_VERSION}
- name: Check And Bump
env:
GITHUB_USER: keroxp
GITHUB_REPO: deno-redis
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
export PATH=$HOME/.deno/bin:$PATH
deno run -A https://denopkg.com/keroxp/[email protected]/main.ts

0 comments on commit b9aff14

Please sign in to comment.