Skip to content

Fix getByCriteria sort #5

Fix getByCriteria sort

Fix getByCriteria sort #5

Workflow file for this run

name: Node.js Package
on:
push:
branches:
- main
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm i
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: git config --global user.email "marco.boelling@web.de"
- run: git config --global user.name "Marco Boelling"
# - run: npm version ${{steps.get_version.outputs.VERSION}}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}