Update workflow
Some checks failed
Build AirSignal Docker image / build-docker (push) Failing after 46s

This commit is contained in:
2023-11-09 02:20:09 +01:00
parent 576796a5a2
commit b523e5adaf

View File

@ -10,7 +10,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Login to container registry - name: Login to container registry
run: echo ${{ secrets.CONTAINER_REGISTRY_TOKEN }} | docker login -u ${{ secrets.CONTAINER_REGISTRY_USER }} https://gitea.local.chriphost.de --password-stdin # run: echo ${{ secrets.CONTAINER_REGISTRY_TOKEN }} | docker login -u ${{ secrets.CONTAINER_REGISTRY_USER }} https://gitea.local.chriphost.de --password-stdin
uses: docker/login-action@v3
with:
registry: gitea.local.chriphost.de
username: ${{ secrets.CONTAINER_REGISTRY_USER }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build Docker image - name: Build Docker image
run: docker build . --file Dockerfile run: docker build . --file Dockerfile
- name: Push Docker image - name: Push Docker image