Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
janheinrichmerker committed Aug 8, 2023
1 parent ea4e130 commit 53bd015
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
python:
- "3.7"
- "3.8"
Expand Down Expand Up @@ -159,7 +158,6 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
python:
- "3.7"
- "3.8"
Expand Down Expand Up @@ -195,7 +193,6 @@ jobs:
matrix:
os:
- ubuntu-latest
- windows-latest
python:
- "3.7"
- "3.8"
Expand Down Expand Up @@ -278,7 +275,12 @@ jobs:
uses: docker/setup-qemu-action@v2
- name: "🧰 Set up Docker Buildx"
uses: docker/setup-buildx-action@v2
- name: "🔑 Login to the GitHub Container registry"
- name: "🔑 Login to Docker Hub"
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: "🔑 Login to GitHub Packages"
uses: docker/login-action@v2
with:
registry: ghcr.io
Expand All @@ -288,7 +290,9 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/${{ github.repository }}
images: |
webis/ir_axioms
ghcr.io/${{ github.repository }}
- name: "🚀 Build and push image"
uses: docker/build-push-action@v4
with:
Expand Down

0 comments on commit 53bd015

Please sign in to comment.