Skip to content

Update module gopkg.in/yaml.v2 to v3 #445

Update module gopkg.in/yaml.v2 to v3

Update module gopkg.in/yaml.v2 to v3 #445

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v7
with:
submodules: true
- name: Build the Docker image
run: docker build -t ghcr.io/bootjp/simple_dns:latest .
- name: Login to GitHub Container Registry
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: push the Docker image
run: docker push ghcr.io/bootjp/simple_dns:latest