chore: fix name

This commit is contained in:
Aravinth Manivannan 2022-08-14 17:38:12 +05:30
parent 7fd4f6a615
commit 6ac10a9ee7
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88
2 changed files with 15 additions and 8 deletions

View file

@ -75,6 +75,12 @@ jobs:
# with:
# node-version: "16.x"
- name: configure GPG key
if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/dumbserve'
run: echo -n "$RELEASE_BOT_GPG_SIGNING_KEY" | gpg --import
env:
RELEASE_BOT_GPG_SIGNING_KEY: ${{ secrets.RELEASE_BOT_GPG_SIGNING_KEY }}
- name: Install ${{ matrix.version }}
uses: actions-rs/toolchain@v1
with:
@ -87,6 +93,7 @@ jobs:
# env:
# POSTGRES_DATABASE_URL: "${{ env.POSTGRES_DATABASE_URL }}"
# MARIA_DATABASE_URL: "${{ env.MARIA_DATABASE_URL }}"
#
- name: build
run: make
@ -117,9 +124,9 @@ jobs:
if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/dumbserve'
run: make docker-publish
# - name: publish bins
# if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/dumbserve'
# run: ./scripts/publish.sh master latest
- name: publish bins
if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'realaravinth/dumbserve'
run: ./scripts/publish.sh master latest
- name: generate documentation
if: matrix.version == 'stable' && (github.repository == 'realaravinth/dumbserve')

View file

@ -22,9 +22,9 @@
set -xEeuo pipefail
DUMMYSERVE_USERNAME=$4
DUMMYSERVE_PASSWORD=$5
DUMMYSERVE_HOST="https://$DUMMYSERVE_USERNAME:$DUMMYSERVE_PASSWORD@dl.batsense.net"
DUMBSERVE_USERNAME=$4
DUMBSERVE_PASSWORD=$5
DUMBSERVE_HOST="https://$DUMBSERVE_USERNAME:$DUMBSERVE_PASSWORD@dl.batsense.net"
NAME=dummyserve
@ -72,7 +72,7 @@ sign() {
}
delete_dir() {
curl --location --request DELETE "$DUMMYSERVE_HOST/api/v1/files/delete" \
curl --location --request DELETE "$DUMBSERVE_HOST/api/v1/files/delete" \
--header 'Content-Type: application/json' \
--data-raw "{
\"path\": \"$1\"
@ -86,7 +86,7 @@ upload_dist() {
do
curl -v \
-F upload=@$file \
"$DUMMYSERVE_HOST/api/v1/files/upload?path=$1/"
"$DUMBSERVE_HOST/api/v1/files/upload?path=$1/"
done
}