mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 16:42:24 +01:00
ci: try to fix docker buildx push
This commit is contained in:
parent
10df5316b3
commit
c5012d05fa
1 changed files with 10 additions and 2 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
|
@ -54,9 +54,17 @@ jobs:
|
||||||
java-version: 8
|
java-version: 8
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm install --only=production
|
run: npm install --only=production
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v1
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
- name: Release
|
- name: Release
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
run: npx semantic-release
|
run: npx semantic-release
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue