Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build_new.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: build-solc

on:
workflow_dispatch:
schedule:
- cron: "30 */3 * * *"

jobs:
build:
Expand All @@ -21,7 +19,7 @@ jobs:
- name: Version
run: |
wget -O /tmp/list.txt https://raw.githubusercontent.com/ethereum/solc-bin/gh-pages/bin/list.txt
last_version=$(head -n 1 /tmp/list.txt | sed 's/soljson-//' | sed 's/.js//')
last_version=v0.8.18+commit.87f61d96
exists=$(aws s3 --endpoint-url https://storage.googleapis.com ls --recursive s3://${{ secrets.BUCKET }}/$last_version > /dev/null && echo true || echo false)
echo "SOLC_VERSION=${last_version}" >> $GITHUB_ENV
echo "ALREADY_EXISTS=${exists}" >> $GITHUB_ENV
Expand Down