Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lablans committed Sep 6, 2024
1 parent 57c20a8 commit a159994
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
include:
Expand All @@ -28,38 +28,38 @@ jobs:
-
name: init git submodules
run: scripts/init_submodules.sh
-
name: set up QEMU
uses: docker/setup-qemu-action@v1
-
name: set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: log in to github container registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: define docker tags
id: meta
uses: docker/metadata-action@v3
with:
images: |
ghcr.io/medicalinformatics/secureepilinker
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
flavor: |
latest=auto
prefix=${{ matrix.distribution }}-
# -
# name: set up QEMU
# uses: docker/setup-qemu-action@v1
# -
# name: set up Docker Buildx
# uses: docker/setup-buildx-action@v1
# -
# name: log in to github container registry
# uses: docker/login-action@v1
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# -
# name: define docker tags
# id: meta
# uses: docker/metadata-action@v3
# with:
# images: |
# ghcr.io/medicalinformatics/secureepilinker
# tags: |
# type=schedule
# type=ref,event=branch
# type=ref,event=pr
# flavor: |
# latest=auto
# prefix=${{ matrix.distribution }}-
-
name: build docker image
uses: docker/build-push-action@v2
with:
push: true
# push: true
file: Dockerfile.${{ matrix.distribution }}
labels: ${{ steps.meta.outputs.labels }}
tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}
# tags: ${{ steps.meta.outputs.tags }}

0 comments on commit a159994

Please sign in to comment.