From df4148c284733a8a8c20d4da3c63c73dc0ee3b3f Mon Sep 17 00:00:00 2001 From: Sasha Gerrand Date: Fri, 19 Apr 2024 14:28:43 +0100 Subject: [PATCH] Update deprecated deploy step in CircleCI config > This job is using a deprecated deploy step, please update .circleci/config.yml to use a run step As per: https://circleci.com/docs/migrate-from-deploy-to-run/ --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7b2b524..bb2cc95 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -41,7 +41,7 @@ jobs: - run: command: go install github.com/tcnksm/ghr@latest name: Install ghr executable - - deploy: + - run: name: Upload to GitHub release command: ghr -r $CIRCLE_PROJECT_REPONAME -u $CIRCLE_PROJECT_USERNAME --prerelease --delete unreleased artefacts workflows: