Skip to content

Commit

Permalink
feat: add moving entities (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgazelka authored Mar 23, 2024
1 parent a3ea94b commit e4d7033
Show file tree
Hide file tree
Showing 38 changed files with 1,070 additions and 273 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.zip filter=lfs diff=lfs merge=lfs -text
47 changes: 9 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@nightly
Expand All @@ -37,6 +39,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true

- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
Expand All @@ -50,6 +54,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true


- uses: dtolnay/rust-toolchain@nightly
with:
Expand All @@ -66,6 +73,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true

- uses: dtolnay/rust-toolchain@nightly
with:
Expand All @@ -76,42 +85,4 @@ jobs:
- name: Clippy check
run: cargo clippy

# deploy:
# if: github.ref == 'refs/heads/main'
# runs-on: ubuntu-latest
# needs:
# - clippy
# - fmt
# - test
# - udeps
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Login to Docker Registry
# uses: azure/docker-login@v1
# with:
# login-server: TODO.azurecr.io
# username: ${{ secrets.REGISTRY_USERNAME }}
# password: ${{ secrets.REGISTRY_PASSWORD }}
#
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
#
# - name: Build and Push Docker image
# uses: docker/build-push-action@v5
# with:
# context: .
# file: ./Dockerfile
# push: true
# tags: TODO.azurecr.io/TODO:${{ github.sha }}
# cache-from: type=gha
# cache-to: type=gha,mode=max
#
# - name: Deploy to Azure Web App
# uses: azure/webapps-deploy@v2
# with:
# app-name: 'TODO'
# publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}
# images: 'TODO.azurecr.io/myapp:${{ github.sha }}'

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/target
*.webm
*.jar
Loading

0 comments on commit e4d7033

Please sign in to comment.