Skip to content

Commit

Permalink
Fixed meta.release
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Aug 21, 2024
1 parent 0e37a89 commit ed38fcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion templates/app/web-app/package.json.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"local-services": "hc run-local-services --bootstrap-port $BOOTSTRAP_PORT --signal-port $SIGNAL_PORT",
"test": "pnpm run build:happ && nix flake check -L && pnpm -F tests test",
"build:happ": "nix build -L .#{{app_name}} -o workdir/{{app_name}}.happ",
"package": "nix build -L .#{{app_name}}.release -o workdir/{{app_name}}.happ && pnpm -F ui package && hc web-app pack workdir"
"package": "nix build -L .#{{app_name}}.meta.release -o workdir/{{app_name}}.happ && pnpm -F ui package && hc web-app pack workdir"
},
"devDependencies": {
"@holochain-playground/cli": "^0.300.0-rc",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ jobs:
env:
CACHIX_AUTH_TOKEN: "$\{{ secrets.CACHIX_TOKEN_HOLOCHAIN_OPEN_DEV }}"
run: |
cachix watch-exec holochain-open-dev -- nix build --no-update-lock-file --accept-flake-config -L .#{{snake_case app_name}}_integrity.release
cachix push holochain-open-dev $(nix path-info --json --accept-flake-config --no-warn-dirty .#{{snake_case app_name}}_integrity.release | nix run nixpkgs#jq -- -r 'keys[0]')
cachix watch-exec holochain-open-dev -- nix build --no-update-lock-file --accept-flake-config -L .#{{snake_case app_name}}_integrity.meta.release
cachix push holochain-open-dev $(nix path-info --json --accept-flake-config --no-warn-dirty .#{{snake_case app_name}}_integrity.meta.release | nix run nixpkgs#jq -- -r 'keys[0]')

cachix watch-exec holochain-open-dev -- nix build --no-update-lock-file --accept-flake-config -L .#{{snake_case app_name}}.release
cachix push holochain-open-dev $(nix path-info --json --accept-flake-config --no-warn-dirty .#{{snake_case app_name}}.release | nix run nixpkgs#jq -- -r 'keys[0]')
cachix watch-exec holochain-open-dev -- nix build --no-update-lock-file --accept-flake-config -L .#{{snake_case app_name}}.meta.release
cachix push holochain-open-dev $(nix path-info --json --accept-flake-config --no-warn-dirty .#{{snake_case app_name}}.meta.release | nix run nixpkgs#jq -- -r 'keys[0]')

- name: Pin release zomes
if: github.event_name != 'pull_request' && matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit ed38fcf

Please sign in to comment.