Skip to content

Commit

Permalink
removed winit completely
Browse files Browse the repository at this point in the history
  • Loading branch information
TadaTeruki committed Aug 14, 2024
1 parent 549cb75 commit cf052b9
Show file tree
Hide file tree
Showing 19 changed files with 253 additions and 1,390 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/wasm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,17 @@ jobs:
run: |
git config user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
export DEPLOY_BRANCH=`git rev-parse --abbrev-ref HEAD`-deploy
export CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD`
export DEPLOY_BRANCH=${CURRENT_BRANCH}-deploy
git switch -c $DEPLOY_BRANCH
git pull origin main
git pull origin $CURRENT_BRANCH
git rm ./view/.gitignore
cd graphics
make build
cd ..
rm ./view/pkg/.gitignore
git add .
git commit -m "build: $(date +'%Y/%m/%d')"
git commit -m "build: $(date +'%Y/%m/%d %H:%M:%S')"
git push origin -f $DEPLOY_BRANCH
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading

0 comments on commit cf052b9

Please sign in to comment.