diff --git a/.github/workflows/self-action.yml b/.github/workflows/self-action.yml index 40540c1..a2ad332 100644 --- a/.github/workflows/self-action.yml +++ b/.github/workflows/self-action.yml @@ -1,8 +1,8 @@ name: "Test Action" on: - push: - branches: ["main"] + release: + types: [published] permissions: contents: read @@ -15,4 +15,5 @@ jobs: - uses: actions/checkout@v4 - name: "Run Action" - uses: 42ByteLabs/patch-release-me@0.5.4 + uses: 42ByteLabs/patch-release-me@0.5.5 + diff --git a/.release.yml b/.release.yml index a2395d3..bc81c76 100644 --- a/.release.yml +++ b/.release.yml @@ -1,5 +1,5 @@ name: "patch-release-me" -version: "0.5.4" +version: "0.5.5" repository: "42ByteLabs/patch-release-me" ecosystems: diff --git a/Cargo.lock b/Cargo.lock index f6c7245..3f3d64b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "patch-release-me" -version = "0.5.4" +version = "0.5.5" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index d1aca61..362e2cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "patch-release-me" -version = "0.5.4" +version = "0.5.5" license = "MIT" description = "A tool to automate patching of your projects before you release them" diff --git a/README.md b/README.md index 30564aa..5209610 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ cargo install patch-release-me ```yaml - name: "Patch Release Me" - uses: 42ByteLabs/patch-release-me@0.5.4 + uses: 42ByteLabs/patch-release-me@0.5.5 with: # Bump (patch) mode: bump @@ -44,13 +44,13 @@ cargo install patch-release-me **Pull Container from GitHub:** ```bash -docker pull ghcr.io/42bytelabs/patch-release-me:0.5.4 +docker pull ghcr.io/42bytelabs/patch-release-me:0.5.5 ``` **Run Image:*** ```bash -docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.5.4 patch-release-me --help +docker run -it --rm -v $PWD:/app ghcr.io/42bytelabs/patch-release-me:0.5.5 patch-release-me --help ``` ### Manual Install diff --git a/actions/Dockerfile b/actions/Dockerfile index fc3c352..8c79c55 100644 --- a/actions/Dockerfile +++ b/actions/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/42bytelabs/patch-release-me:0.5.4 +FROM ghcr.io/42bytelabs/patch-release-me:0.5.5 ENTRYPOINT ["patch-release-me"]