From 797037335e10e158055a45e0bc358548d6895b04 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Mon, 24 Aug 2020 02:36:50 -0400 Subject: [PATCH] ci: Delete redundant fields --- .github/workflows/deploy.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1ee4d4dd..c149df44 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -2,9 +2,6 @@ name: Update Packages on: workflow_dispatch: - inputs: - tags: - description: "Test scenario tags" release: types: [published] @@ -18,6 +15,11 @@ jobs: - name: Test env run: | echo $RELEASE_VERSION + - name: Make sure you're not on master... + run: | + if [[ $RELEASE_VERSION == "master" ]]; then + exit 1 + fi - name: Download packages run: | curl -LO "https://github.com/ClementTsang/bottom/releases/download/$RELEASE_VERSION/bottom_x86_64-unknown-linux-gnu.tar.gz";