Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Bump Microsoft.EntityFrameworkCore.Relational from 9.0.10 to 9.0.11 #1403

Bump Microsoft.EntityFrameworkCore.Relational from 9.0.10 to 9.0.11

Bump Microsoft.EntityFrameworkCore.Relational from 9.0.10 to 9.0.11 #1403

Workflow file for this run

name: Create Docker image
on:
push:
branches: ['main']
tags: ["*"]
pull_request:
branches: ['main']
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
permissions:
contents: read
packages: write
strategy:
matrix:
service:
- name: GameServer
dockerfile: Dockerfile
container_id: refresh
build_args: ""
- name: PresenceServer
dockerfile: PresenceServer.Dockerfile
container_id: refresh-presenceserver
build_args: ""
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# This step below will fill in things like name, description, etc. from the repository.
# It's helpful for us because it also fills in the version information automatically depending on how the job was invoked.
# See https://github.com/docker/metadata-action#basic
- name: Extract metadata for ${{ matrix.service.name }}
id: meta
uses: docker/metadata-action@v5.7.0
with:
images: ghcr.io/${{ github.repository_owner }}/${{ matrix.service.container_id }}
- name: Build and push ${{ matrix.service.name }}
uses: docker/build-push-action@v6.18.0
with:
context: .
file: ${{ matrix.service.dockerfile }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
${{ matrix.service.build_args }}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.