From 5b64b256979c81156da3ac8ddc216e7e472c8906 Mon Sep 17 00:00:00 2001 From: Max Hoffman Date: Wed, 10 Mar 2021 15:53:44 -0800 Subject: [PATCH] Remove unnecessary scripts --- .github/workflows/release-notify.yaml | 15 --------------- scripts/release.sh | 15 --------------- 2 files changed, 30 deletions(-) delete mode 100644 .github/workflows/release-notify.yaml delete mode 100755 scripts/release.sh diff --git a/.github/workflows/release-notify.yaml b/.github/workflows/release-notify.yaml deleted file mode 100644 index ecc5212..0000000 --- a/.github/workflows/release-notify.yaml +++ /dev/null @@ -1,15 +0,0 @@ -name: Release Notification - -on: release - -jobs: - notify: - name: Release Notification - steps: - - name: Discord Notify - if: always() - uses: dolthub/ga-discord-notify@master - with: - job-status: ${{ job.status }} - webhook-url: ${{ secrets.DISCORD_WEBHOOK }} - notify-on-success: true diff --git a/scripts/release.sh b/scripts/release.sh deleted file mode 100755 index 88fa977..0000000 --- a/scripts/release.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -set -xeou pipefail - -DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd) -BASE=$DIR/.. - -USERNAME=Dolthub -#PASSWORD= - -poetry config http-basic.pypi $USERNAME $PASSWORD - -cd $BASE -poetry build -poetry publish -r doltcli $@