From c534ca58f6973c6a5260efc505ffee5211a0adc5 Mon Sep 17 00:00:00 2001 From: marudor Date: Sun, 31 May 2020 16:34:42 +0200 Subject: [PATCH] v0.25.4 --- .github/workflows/builds.yml | 11 ++++++----- package.json | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 9123819..2402153 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -2,8 +2,8 @@ name: builds on: push: - branches: - - master + tags: + - v* pull_request: branches: - master @@ -56,7 +56,7 @@ jobs: path: 'build/**/*.tar.gz' deploy: runs-on: ubuntu-18.04 - needs: [alpine] + needs: [alpine, build] if: startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/checkout@v2 @@ -66,10 +66,11 @@ jobs: - uses: actions/download-artifact@v2 with: path: build - - run: ls -R + - id: vars + run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} - uses: eine/tip@master with: token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ github.ref }} + tag: ${{ steps.vars.outputs.tag }} files: | ./build/*/stage/marudor/libxmljs2/releases/download/*/* diff --git a/package.json b/package.json index bf65e5e..c2dfde4 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "package_name": "{node_abi}-{platform}-{arch}-{libc}.tar.gz" }, "description": "libxml bindings for v8 javascript engine", - "version": "0.25.3", + "version": "0.25.4", "scripts": { "build": "node-pre-gyp install --build-from-source", "install": "node-pre-gyp install --fallback-to-build --loglevel http",