From 6fd5c72d6c1190683d6c8789d3be72ed504d9610 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Sunkara Date: Tue, 21 Jul 2020 15:21:15 +0200 Subject: [PATCH] Add workflow_dispatch for manual publish --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9ea05fa257c..bc144e0a3dc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,5 +1,6 @@ name: Publish on: + workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed schedule: - cron: "0 0 * * 0" # midnight UTC on Sunday @@ -18,7 +19,7 @@ jobs: - name: Install Rust toolchain uses: actions-rs/toolchain@v1 with: - toolchain: stable + toolchain: stable profile: minimal override: true