Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Commit

Permalink
fix: release test
Browse files Browse the repository at this point in the history
  • Loading branch information
mtb0x1 committed Aug 29, 2023
1 parent e3455f3 commit d669b53
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
rustup toolchain install nightly-x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: install wasm-pack
run: cargo install wasm-pack
- name: install wasm-pack
run: cargo install wasm-pack --force

- name: Build
run: ./build.sh
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@ jobs:
- name: Build
run: ./build.sh

- name: Bundle
run: tar -zcvf www.tar.gz www

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Latest Release"
files: |
www/*
www.tar.gz
README.md
run.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# rework in progress ...
I will try to port few llama2.rs to wasm, each will be in a ./portX folder with specific instructions.

A global release including all ports is available in `www`, just run `./run.sh` and go to `http://localhost:8080/`
A global release including all ports is available in releases section : untar it, run `./run.sh` and go to `http://localhost:8080/`.

Maybe host it as a github page ?

Expand Down

0 comments on commit d669b53

Please sign in to comment.