Skip to content

Commit

Permalink
suppress errors while trying to remove non-existent images;
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalnandagopal committed Jan 12, 2024
1 parent 5d8a7f8 commit e197020
Show file tree
Hide file tree
Showing 4 changed files with 763 additions and 1,012 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
script: |
cd ./deploy/${{ github.event.repository.name }}
git pull
docker rm --force ${{ github.event.repository.name }}-deploy || true
docker rm --force ${{ github.event.repository.name }}-deploy 2> /dev/null
docker build -t ${{ github.event.repository.owner.name }}/${{ github.event.repository.name }}:${{ env.COMMIT_SHORT_SHA }} --quiet .
docker run --detach --name ${{ github.event.repository.name }}-deploy ${{ github.event.repository.owner.name }}/${{ github.event.repository.name }}:${{ env.COMMIT_SHORT_SHA }}
docker container prune --force && docker image prune --all --force
178 changes: 4 additions & 174 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11.6"
firebase-admin = "^6.2.0"
toml = "^0.10.2"
discord-py = "^2.3.2"
pandas = "^2.1.3"
python-dotenv = "^1.0.0"


Expand Down
Loading

0 comments on commit e197020

Please sign in to comment.