Compare commits

..

No commits in common. "acccf2f4ef82155eb430ce3be84a86321c5de848" and "4cf6c40e3f8499a9bf4143488777f3998605b5d5" have entirely different histories.

2 changed files with 11 additions and 3 deletions

View file

@ -75,7 +75,7 @@ jobs:
publish-to-npm:
runs-on: docker
needs: [build-and-test, check-version]
needs: [mirror]
container:
image: node:20-alpine
if: needs.check-version.outputs.version_changed == 'true' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master')
@ -102,7 +102,7 @@ jobs:
runs-on: docker
container:
image: node:20-alpine
needs: [build-and-test, check-version]
needs: [build-and-test]
if: needs.check-version.outputs.version_changed == 'true' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master')
steps:
- name: Download lhmask
@ -123,3 +123,11 @@ jobs:
npm publish
env:
NPM_TOKEN: ${{ secrets.PACKAGE_PUBLISHER_TOKEN }}
finish:
runs-on: docker
needs: [build-and-test, publish-to-npm, publish-to-git]
container:
image: node:20-alpine
steps:
- run: echo Done

View file

@ -1,6 +1,6 @@
{
"name": "lhmask-dev",
"version": "1.1.11",
"version": "1.1.9",
"description": "Biblioteca com funções para formatação de dados.",
"main": "src/lhmask.js",
"scripts": {