Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
rename dove repo (#10)
Browse files Browse the repository at this point in the history
* rename dove repo

* temporarily removed releases for win
  • Loading branch information
boozook authored Feb 7, 2022
1 parent 58edb2c commit 811300a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
os:
- macos-latest
- ubuntu-latest
- windows-latest
# TODO: return windows back when it supported
# - windows-latest
steps:
- uses: actions/checkout@v2
- name: Cache
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_bashfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
os:
- macos-latest
- ubuntu-latest
- windows-latest
# TODO: return windows back when it supported
# - windows-latest
steps:
- name: Cache
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This GitHub Action delivers specified [`dove`] release for a Move language.

[`dove`]: https://github.com/pontem-network/move-tools
[`dove`]: https://github.com/pontem-network/dove


## Parameters
Expand Down
4 changes: 2 additions & 2 deletions dove_download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ if [ ! -e $releases_path ] || [ $(($(date "+%s")-$(date -r $releases_path "+%s"
echo "Download: releases.json";
if [ -z $SECRET_TOKEN ]; then
curl -o "$releases_path.tmp" \
-s https://api.github.com/repos/pontem-network/move-tools/releases;
-s https://api.github.com/repos/pontem-network/dove/releases;
else
curl -o "$releases_path.tmp" \
-H "Authorization: Bearer ${SECRET_TOKEN}" \
-s https://api.github.com/repos/pontem-network/move-tools/releases;
-s https://api.github.com/repos/pontem-network/dove/releases;
fi;
mv "$releases_path.tmp" $releases_path;
fi;
Expand Down

0 comments on commit 811300a

Please sign in to comment.