ci: Delete redundant fields

This commit is contained in:
ClementTsang 2020-08-24 02:36:50 -04:00
parent a7f8aab6aa
commit 797037335e

View file

@ -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";