RESTfulMC/.gitea/workflows/deploy-lib.yml
Rainnny7 4c0346ab3e
Some checks failed
Deploy Lib / docker (ubuntu-latest, 2.44.0) (push) Failing after 8s
don't setup bun each time
2024-04-14 16:43:35 -04:00

38 lines
748 B
YAML

name: Deploy Lib
on:
push:
branches: ["master"]
paths: [".gitea/workflows/deploy-lib.yml", "Lib/**"]
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-latest"]
git-version: ["2.44.0"]
runs-on: ${{ matrix.arch }}
defaults:
run:
working-directory: ./Lib
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
# 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
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}