summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2020-08-24 02:36:50 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2020-08-24 02:36:50 -0400
commit797037335e10e158055a45e0bc358548d6895b04 (patch)
tree82c5b11653b6993a91eae34818636507f4fdc123
parenta7f8aab6aa407f2d7174e6eb478040d87210d36e (diff)
ci: Delete redundant fields
-rw-r--r--.github/workflows/deploy.yml8
1 files 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";