Skip to content

Commit

Permalink
updated version + added build github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelotfr committed Oct 18, 2023
1 parent 66f8e43 commit ede700c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bun-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build
on:
release:
types: [ published ]

permissions:
contents: write

jobs:
bun-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: 'Install Dependencies'
run: bun install

- name: 'Build app'
run: bun run build

- uses: softprops/action-gh-release@v1
with:
files: |
substreams-atomicmarket-api
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "substreams-atomicmarket-api",
"description": "Atomicmarket sales API powered by Substreams",
"version": "v0.0.1",
"repository": "https://github.com/pinax-network/substreams-atomicmarket-sales",
"version": "v0.1.0",
"repository": "https://github.com/pinax-network/substreams-atomicmarket-api",
"scripts": {
"dev": "bun run --hot src/index.ts",
"lint": "bun run tsc --noEmit --skipLibCheck --pretty",
Expand Down

0 comments on commit ede700c

Please sign in to comment.