diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml deleted file mode 100644 index 9298a73..0000000 --- a/.github/workflows/docker-publish.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Docker - -on: - schedule: - - cron: "20 6 * * *" - push: - branches: [master] - tags: ["v*.*.*"] - pull_request: - branches: [master] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Login to Docker Hub - if: github.event_name != 'pull_request' - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - # Extract metadata (tags, labels) for Docker - # https://github.com/docker/metadata-action - - name: Extract Docker metadata - id: meta - uses: docker/metadata-action@v3 - with: - images: thelovinator/discord-nice-embed-maker-for-my-yoy - flavor: latest=${{ github.ref == 'refs/heads/master' }} - - # Build and push Docker image with Buildx (don't push on PR) - # https://github.com/docker/build-push-action - - name: Build and push Docker image - id: build-and-push - uses: docker/build-push-action@v2 - with: - context: . - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 57e766b..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Python: FastAPI", - "type": "python", - "request": "launch", - "module": "uvicorn", - "args": ["discord_embed.main:app", "--reload", "--port", "5000"], - "env": { - "DOMAIN": "http://127.0.0.1:5000/", - "UPLOAD_FOLDER": "./Uploads" - }, - "jinja": true - } - ] -}