-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (34 loc) · 933 Bytes
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Bun Main Workflow
on:
push:
branches:
- main
workflow_dispatch:
inputs:
version:
description: 'Version'
type: string
required: true
fconly:
description: 'FC Only'
type: boolean
required: true
default: false
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