Skip to content

add manual workflow trigger in workflow #41

add manual workflow trigger in workflow

add manual workflow trigger in workflow #41

Workflow file for this run

name: "Test and release to NPM.JS"
on:
push:
tags:
- "v*"
workflow_dispatch:

Check failure on line 7 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

You have an error in your yaml syntax on line 7
jobs:
test:
name: Run bun test
runs-on: ubuntu-latest
env:
MEDIA_ID: ${{ secrets.MEDIA_ID }}
GOOGLE_COOKIE: ${{ secrets.GOOGLE_COOKIE }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Run test
run: bun test
publish:
name: Publish to NPM
runs-on: ubuntu-latest
needs: test
env:
NPM_CONFIG_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: |
bun install
- name: Publish to NPM
run: bun publish -p --access public