Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBoot committed Jan 13, 2024
1 parent 6a10dad commit 8ce345e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/checkout@v4

- run: git fetch --prune --unshallow --tag

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2

- run: git fetch --prune --unshallow --tags
uses: actions/checkout@v4
with:
fetch-tags: true

- name: Cache
uses: actions/cache@v3
Expand Down Expand Up @@ -78,9 +78,9 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2

- run: git fetch --prune --unshallow --tags
uses: actions/checkout@v4
with:
fetch-tags: true

- name: Parse Changelog
id: changelog
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ AutoKuma is a utility that automates the creation of Uptime Kuma monitors based

## 🔧 How to Install

The AutoKuma Docker container is available on [GitHub Container Registry (GHCR)](https://github.com/BigBoot/AutoKuma/pkgs/container/autokuma). To install, simply pull the container using:
Binaries for windows linux and mac are provided for [GitHub Releases](https://github.com/BigBoot/AutoKuma/releases/latest), additionally AutoKuma is available as a Docker container on [GitHub Container Registry (GHCR)](https://github.com/BigBoot/AutoKuma/pkgs/container/autokuma). To install, simply pull the container using:

```bash
docker pull ghcr.io/bigboot/autokuma:latest
Expand Down Expand Up @@ -178,7 +178,7 @@ Kuma CLI is a Command-Line Interface (CLI) tool for managing and interacting wit

## 🔧 How to Install

There are currently no prebuilt binaries available, however Kuma CLI can be installed using `cargo`
Binaries for windows linux and mac are provided for [GitHub Releases](https://github.com/BigBoot/AutoKuma/releases/latest), additionally Kuma CLI can be installed using `cargo`:

```bash
cargo install --git https://github.com/BigBoot/AutoKuma.git kuma-cli
Expand Down

0 comments on commit 8ce345e

Please sign in to comment.