clear-wallet/.github/bun-workflow.yaml

41 lines
933 B
YAML
Raw Normal View History

2024-07-10 08:36:50 +00:00
name: Bun Main Workflow
on:
push:
branches:
- main
workflow_dispatch:
inputs:
version:
description: 'Version'
2024-07-26 22:21:03 +00:00
type: string
2024-07-10 08:36:50 +00:00
required: true
2024-07-26 22:21:03 +00:00
fconly:
description: 'FC Only'
type: boolean
required: true
default: false
2024-07-10 08:36:50 +00:00
jobs:
run-bun-script:
runs-on: ubuntu-latest
defaults:
run:
working-directory: CI
steps:
- uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: bun install
- name: Run Bun Script - Update
if: github.event_name == 'workflow_dispatch'
run: bun run index.ts '${{ toJSON(secrets) }}' '${{ toJSON(github.event) }}' update
- name: Run Bun Script - Push
if: github.event_name == 'push'
run: bun run index.ts '${{ toJSON(secrets) }}' '${{ toJSON(github.event) }}' push