Skip to content

Commit

Permalink
v0.25.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marudor committed May 31, 2020
1 parent 5beba63 commit c534ca5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: builds

on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
Expand Down Expand Up @@ -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
Expand All @@ -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/*/*
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c534ca5

Please sign in to comment.