Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
629 B

1 year ago
name: Test and Prebuild
on: [push]
jobs:
1 year ago
build:
if: startsWith(github.ref, 'refs/tags/')
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 12
- run: npm install
- run: npm run prebuild
1 year ago
- run: zip -r prebuild-darwin.zip prebuilds
- run: hexdump "prebuilds/darwin-x64/node.abi93.node" | head -10
- name: Prebuild
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
1 year ago
files: prebuild-darwin.zip