Skip to content

Commit b834379

Browse files
committed
Setup Github Actions
1 parent da23ce5 commit b834379

File tree

7 files changed

+86
-63
lines changed

7 files changed

+86
-63
lines changed

.cargo/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
target = ["x86_64-unknown-linux-musl"]
44
rustc-wrapper = "sccache"
55

6-
[target.x86_64-unknown-linux-musl]
7-
linker = "clang"
8-
rustflags = ["-C", "link-arg=--ld-path=wild"]
6+
# [target.x86_64-unknown-linux-musl]
7+
# linker = "clang"
8+
# rustflags = ["-C", "link-arg=--ld-path=wild"]

.github/workflows/e_d.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: ExternalDns DnsMasq Provider
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- 'master'
8+
9+
jobs:
10+
build-n-push:
11+
runs-on: ubuntu-latest
12+
steps:
13+
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Login
18+
uses: docker/login-action@v3
19+
with:
20+
registry: ghcr.io
21+
username: ${{ github.actor }}
22+
password: ${{ secrets.GITHUB_TOKEN }}
23+
24+
- name: Build and push
25+
uses: docker/build-push-action@v6
26+
with:
27+
file: "e_d.Dockerfile"
28+
push: true
29+
tags: |
30+
ghcr.io/magicloud/e_d:${{ github.sha }}
31+
ghcr.io/magicloud/e_d:latest

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.enabled": false
3+
}

Cargo.lock

Lines changed: 44 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "externaldns-webhook"
3-
version = "2025.12.9"
3+
version = "2025.12.17"
44
description = "Interface (trait) for ExternalDns(v0.15.0) webhook."
55
edition = "2024"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)