Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Add Readme &github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
azrod committed Nov 7, 2021
1 parent 5823d04 commit a86f4a6
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# .github/workflows/release.yaml

on:
release:
types: [created]

jobs:
release-linux-amd64:
name: release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: amd64
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<center><h1>UpdateIP</h1></center>

UpdateIP is a automatic update of a DNS record based on the External IP address

## How to setup

> Shortly
# How to config

Create the **config.yaml** configuration file

```yaml
log:
level: debug // Available : trace debug info warn error fatal panic
humanize: true

aws_account:
enable: true
secret:
access_key_id: "xxx"
secret_access_key: "xxx"
region: "eu-west-1"
record:
name: "subdomain.domain.com"
ttl: 60
domain: "domain.com"
```

0 comments on commit a86f4a6

Please sign in to comment.