Skip to content

Commit

Permalink
workflow changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherBiscardi committed Sep 1, 2024
1 parent 565ab5c commit 1896710
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
- name: Tar static files
run: |
tar -czvf static-assets.tar.gz target/site
- name: Remove horizontal whitespace from hash.txt
run: tr -d ' ' < crates/www/target/debug/hash.txt > crates/www/target/debug/hash.txt
- name: Publish GitHub Release
id: gh-release
uses: softprops/action-gh-release@v2
Expand Down
3 changes: 3 additions & 0 deletions crates/www/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ async fn main() {
// Generate the list of routes in your Leptos App
let routes = generate_route_list(App);

dbg!(std::env::var("CDN_PKG_PATH"));
dbg!(std::env::var("CDN_PATH"));

let app = Router::new()
.leptos_routes(&leptos_options, routes, {
let leptos_options = leptos_options.clone();
Expand Down

0 comments on commit 1896710

Please sign in to comment.