Skip to content

TEMP COMMIT: print cmake output folder #4

TEMP COMMIT: print cmake output folder

TEMP COMMIT: print cmake output folder #4

Workflow file for this run

on: push
name: build and upload artifacts
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: cachix/install-nix-action@v26
- uses: cachix/cachix-action@v14
with:
name: devenv
- name: Install devenv.sh
run: nix profile install nixpkgs#devenv
- name: Build
shell: devenv shell bash -- -e {0}
run: |
cargo build --release
mkdir dist
cp ./target/release/libvenkeybind.so ./dist/venkeybind-linux-x64.node
- name: Upload
uses: actions/upload-artifact@v4
with:
path: ./dist/venkeybind-linux-x64.node