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 $@