Skip to content

don't break when fetching broken snaps #9

don't break when fetching broken snaps

don't break when fetching broken snaps #9

Workflow file for this run

name: Build and Deploy
permissions:
contents: write
on:
push:
branches:
- main
paths:
- exporter.ts
- globals.d.ts
- types.ts
- tsconfig.json
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run build
- name: Commit and Push to Build Branch
run: |
git config user.name "Github Actions"
git config user.email "[email protected]"
git add -f ./exporter.js
git commit -m "Build files"
git push