Workaround for gitea actions.
Svelte Website guild. / Building the website (push) Failing after 20m42s Details

This commit is contained in:
Midou36O 2023-12-30 12:38:31 +01:00
parent 5a5d89d9c9
commit eeef1b4dba
Signed by: midou
GPG Key ID: 1D134A95FE521A7A
1 changed files with 5 additions and 3 deletions

View File

@ -12,11 +12,11 @@ jobs:
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
- name: Set up QEMU
uses: https://github.com/docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: 'Build:checkout'
uses: https://github.com/actions/checkout@v3
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
@ -24,7 +24,9 @@ jobs:
username: midou
password: ${{ secrets.ACCESS_TOKEN }}
- name: 'Build:dockerimage'
uses: https://github.com/docker/build-push-action@v3
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: '' # Workaround to some bug specific to gitea actions.
with:
tags: midou/midou36o.github.io:latest
context: '.'