Skip to content

Commit

Permalink
added CI content
Browse files Browse the repository at this point in the history
  • Loading branch information
njones-lanl committed Feb 13, 2024
1 parent 88ad62d commit c109e8a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build_containers.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build and publish containers
on: workflow_dispatch
permissions:
contents: read
packages: write
jobs:
build:
name:
runs-on: ubuntu-latest
steps:
- name: check out the repo
uses: actions/checkout@v4
- name: setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to github container repo
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build+push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:dnsmasq-dhcpd-dynamic"
push: true
tags: dnsmasq:dyanmic-test

0 comments on commit c109e8a

Please sign in to comment.