Skip to content

Bump idna from 3.6 to 3.7 #165

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #165

Workflow file for this run

name: docker
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
jobs:
docker:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/ephios-dev/ephios
- name: Login to Github Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}