From 816df4badee246951aa5281cceb360559aa7b338 Mon Sep 17 00:00:00 2001 From: Hendrik Maus Date: Fri, 18 Feb 2022 09:48:03 +0100 Subject: [PATCH 1/2] refactor: rename the binaries workflow to CD (continuous deployment) This workflow runs on every change of the repository `main` branch and should take care to either provide intermediary binaries, i.e. binaries which are not supposed to be part of an official release, or to discover that `Cargo.toml`'s version number has been changed and create an official release on GitHub and crates.io. --- .github/workflows/{binaries.yml => cd.yml} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/workflows/{binaries.yml => cd.yml} (99%) diff --git a/.github/workflows/binaries.yml b/.github/workflows/cd.yml similarity index 99% rename from .github/workflows/binaries.yml rename to .github/workflows/cd.yml index 830bde98c..2a3e10d3a 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/cd.yml @@ -1,4 +1,4 @@ -name: Compile Binaries +name: CD on: push: From c73a203d12e2129464d3334f97f98c6b9d9ffd42 Mon Sep 17 00:00:00 2001 From: Hendrik Maus Date: Fri, 18 Feb 2022 19:02:18 +0100 Subject: [PATCH 2/2] Update .github/workflows/cd.yml Co-authored-by: Hanno Braun --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2a3e10d3a..7d915b9fc 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -1,4 +1,4 @@ -name: CD +name: Continuous Deployment on: push: