Skip to content

Commit

Permalink
Fixed release version placeholder syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
haribo256 committed Aug 29, 2023
1 parent f3bd777 commit 0b918cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
- name: Create Release
uses: ncipollo/release-action@v1
with:
name: "$version"
tag: "release-$version"
name: ${{ steps.version_step.outputs.version }}
tag: "release-${{ steps.version_step.outputs.version }}"
artifacts: "target/release/home-dns-refresh"
bodyFile: "README.md"
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Home DNS Refresh

[![Crate](https://img.shields.io/crates/v/home-dns-refresh.svg)](https://crates.io/crates/dioxus)
[![Validate](https://github.com/haribo256/home-dns-refresh/actions/workflows/validate.yml/badge.svg)](https://github.com/haribo256/home-dns-refresh/actions/workflows/validate.yml)
[![Release](https://github.com/haribo256/home-dns-refresh/actions/workflows/release.yml/badge.svg)](https://github.com/haribo256/home-dns-refresh/actions/workflows/release.yml)

# Home DNS Refresh

Looks up the current external IP, and updates an Azure Zone A Record to that IP if its different.
`home-dns-refresh` is a CLI job that looks up the current external IP, and updates an Azure Zone A Record to that IP if its different.

The A Record must be resolvable, so that it may check if its the same or different.

Expand Down

0 comments on commit 0b918cc

Please sign in to comment.