working on builds
Some checks failed
Build and push image / deploy (push) Failing after 10s

This commit is contained in:
Peter Dwyer
2023-08-28 13:17:16 +01:00
parent 9dac8304ec
commit 899d021c63

View File

@@ -8,20 +8,23 @@ jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install Docker # - name: Install Docker
run: curl -fsSL https://get.docker.com | sh # run: curl -fsSL https://get.docker.com | sh
- name: Set up QEMU # - name: Set up QEMU
uses: docker/setup-qemu-action@v2 # uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx # - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 # uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub # - name: Login to Docker Hub
uses: docker/login-action@v2 # uses: docker/login-action@v2
with: # with:
username: ${{ secrets.DOCKERHUB_USERNAME }} # username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} # password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: "3.10.12" python-version: '3.10'
cache: 'pip' # caching pip dependencies
- uses: abatilo/actions-poetry@v2 - uses: abatilo/actions-poetry@v2
with: with:
poetry-version: "1.5.1" poetry-version: "1.5.1"