diff --git a/.github/workflows/dockerbuild.alpine.yml b/.github/workflows/dockerbuild.alpine.yml deleted file mode 100644 index 1dec6bfa3..000000000 --- a/.github/workflows/dockerbuild.alpine.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Docker Build Alpine - -on: - push: - branches: - - new-tests - -jobs: - build: - runs-on: ubuntu-latest - steps: - # - # Checkout - # - - name: checkout code - uses: actions/checkout@v2 - # - # Setup QEMU - # - - name: Set up QEMU - id: qemu - uses: docker/setup-qemu-action@v1 - # with: - # image: tonistiigi/binfmt:latest - # platforms: all - # - # Setup Buildx - # - - name: install buildx - id: buildx - uses: docker/setup-buildx-action@v1 - with: - install: true - # - # Login to Docker Hub - # - - name: Login to Docker Hub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - # - # Build - # - - name: build the image - run: | - docker build --push \ - --tag hkotel/mealie:alpine \ - --platform linux/amd64,linux/arm/v7,linux/arm64 . diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index a384ffe31..210e84fbc 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -30,15 +30,15 @@ jobs: with: virtualenvs-create: true virtualenvs-in-project: true - #---------------------------------------------- - # load cached venv if cache exists - #---------------------------------------------- - - name: Load cached venv - id: cached-poetry-dependencies - uses: actions/cache@v2 - with: - path: .venv - key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} + # #---------------------------------------------- + # # load cached venv if cache exists + # #---------------------------------------------- + # - name: Load cached venv + # id: cached-poetry-dependencies + # uses: actions/cache@v2 + # with: + # path: .venv + # key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} #---------------------------------------------- # install dependencies if cache does not exist #----------------------------------------------