-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix breaking changes since
v0.17.0
. (#10)
* Add cron to check latest version biweekly. * Change update install script location. * Add DFXVM_INIT_YES flag. * Use different paths after v0.17.0. * Update bin locations. * Add PATH to logs. * Fix macos path. * Escape spaces in macos bin path. * Update README. * Update action input descriptions.
- Loading branch information
Showing
9 changed files
with
24,851 additions
and
1,062 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
on: | ||
schedule: | ||
- cron: '30 1 1,15 * *' # Run at 01:30 on the 1st and 15th day of the month. | ||
jobs: | ||
test_schedule: | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest ] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: | | ||
latest=$(curl -s 'https://raw.githubusercontent.com/dfinity/sdk/master/public/manifest.json' | jq -r '.tags.latest') | ||
echo "LATEST=$latest" >> "$GITHUB_ENV" | ||
- uses: ./ | ||
with: | ||
dfx-version: ${{ env.LATEST }} | ||
install-moc: true | ||
vessel-version: 0.7.0 | ||
- run: | | ||
dfx --version | ||
moc --version | ||
vessel --version |
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
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
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
Oops, something went wrong.