-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,14 +26,16 @@ runs: | |
- name: Set git config | ||
run: | | ||
git config --global core.bigfilethreshold 100m | ||
shell: bash | ||
|
||
- name: Install Fuel toolchain | ||
run: | | ||
curl -sSLf https://github.com/FuelLabs/sway/releases/download/v${{ env.FORC_VERSION }}/forc-binaries-linux_amd64.tar.gz -L -o forc.tar.gz | ||
tar -xvf forc.tar.gz | ||
chmod +x forc-binaries/forc | ||
mv forc-binaries/forc /usr/local/bin/forc | ||
mv forc-binaries/forc-fmt /usr/local/bin/forc-fmt | ||
curl -sSLf https://github.com/FuelLabs/sway/releases/download/v0.66.5/forc-binaries-linux_amd64.tar.gz -L -o forc.tar.gz | ||
tar -xvf forc.tar.gz | ||
chmod +x forc-binaries/forc | ||
mv forc-binaries/forc /usr/local/bin/forc | ||
mv forc-binaries/forc-fmt /usr/local/bin/forc-fmt | ||
shell: bash | ||
# uses: FuelLabs/[email protected] | ||
# with: | ||
# name: fuel-bridge | ||
|