Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into lint
Browse files Browse the repository at this point in the history
  • Loading branch information
essserrr committed Jan 5, 2025
2 parents b91f1e7 + 47b8191 commit a1f4820
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/release-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release

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

env:
HUSKY: 0
CI: true

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@codedependant/semantic-release-docker
env:
GITHUB_TOKEN: ${{ github.token }}
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
# apy-server
for fetching the apy of different asset on diferrent protocols. For protocols Like for curve, lido, sky, pendle, defillama etc.

### Running locally
```
yarn
npx ts-node main.ts
```


### Running via github actions on fly.io
- https://fly.io/docs/launch/continuous-deployment-with-github-actions/

### Deploying changes via github actions
- Create a PR to the main branch.
- On merger the changes will be applied to apy-server.fly.dev

0 comments on commit a1f4820

Please sign in to comment.