Skip to content

Commit

Permalink
chore: add release script
Browse files Browse the repository at this point in the history
  • Loading branch information
rdmclin2 committed Dec 17, 2023
1 parent 6e96da7 commit f7246c8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 243 deletions.
106 changes: 0 additions & 106 deletions .github/scripts/build_index.py

This file was deleted.

68 changes: 0 additions & 68 deletions .github/scripts/validate.py

This file was deleted.

69 changes: 0 additions & 69 deletions .github/workflows/build_index.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Release

on:
push:
branches:
- main

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install bun
uses: oven-sh/setup-bun@v1

- name: Install deps
run: bun i

- name: Test
run: bun run test

- name: Build
run: bun run build

0 comments on commit f7246c8

Please sign in to comment.