RESTfulMC/.gitea/workflows/deploy-lib.yml
Rainnny7 67d6df8916
Some checks failed
Deploy Lib / docker (push) Failing after 54s
finally omg
2024-04-14 17:27:27 -04:00

38 lines
728 B
YAML

name: Deploy Lib
on:
push:
branches: ["master"]
paths: [".gitea/workflows/deploy-lib.yml", "Lib/**"]
jobs:
docker:
runs-on: "ubuntu-latest"
defaults:
run:
working-directory: "./Lib"
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
# Setup Bun
- name: Setup Bun
uses: oven-sh/setup-bun@v1
# Install Dependencies
- name: Install Dependencies
run: bun install --frozen-lockfile
# Run Tests
- name: Run Tests
run: bun test
# Publish to NPM
- name: Publish to NPM
run: npm publish
env:
NPM_TOKEN: ${{ secrets.PUBLISH_NPM_TOKEN }}