diff options
author | Joris | 2022-07-05 21:41:33 +0200 |
---|---|---|
committer | Joris | 2022-07-05 21:41:33 +0200 |
commit | c1da6627de672b8c1000d0cd45fd267ab8e0ca55 (patch) | |
tree | 5ae92084bebc05a64aa4b44df32ec514c02cb246 /deploy | |
parent | 9f708ead7a10763c0201cbc29382fefc6822e23a (diff) |
Migrate away from gitlab
Diffstat (limited to 'deploy')
-rwxr-xr-x | deploy | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -1,16 +0,0 @@ -#!/usr/bin/env bash -set -e -git branch -D pages || true -git checkout -b pages -rm -f public/game_of_life.js -rm -f public/game_of_life_bg.wasm -rm -f public/game_of_life_bg.wasm.gz -wasm-pack build --release --target web -mv pkg/game_of_life.js public -wasm-opt -O -o public/game_of_life_bg.wasm pkg/game_of_life_bg.wasm -gzip -9 --keep public/game_of_life_bg.wasm -git add . -git commit -m "Deploy pages" -git push --force origin pages -git checkout master -git branch -D pages |