Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish-x86_64-apple-darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
mkdir dist
cp ./target/x86_64-apple-darwin/release/nargo ./dist/nargo
mkdir -p ./dist/noir-lang/std
cp crates/std_lib/src/*.nr ./dist/noir-lang/std
cp noir_stdlib/src/*.nr ./dist/noir-lang/std
7z a -ttar -so -an ./dist/* | 7z a -si ./nargo-x86_64-apple-darwin.tar.gz

- name: Upload binaries to nightly
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-x86_64-pc-windows-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
schedule:
- cron: "0 2 * * *" # run at 2 AM UTC
push:
tags:
- "v*"

jobs:
build-x86_64-pc-windows-msvc:
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
ls target/release
cp ./target/${{ matrix.target }}/release/nargo.exe ./dist/nargo.exe
mkdir -p ./dist/noir-lang/std
cp crates/std_lib/src/*.nr ./dist/noir-lang/std
cp noir_stdlib/src/*.nr ./dist/noir-lang/std
7z a -tzip nargo-${{ matrix.target }}.zip ./dist/*

- name: Upload binaries to nightly
Expand Down