diff --git a/.github/workflows/frontier-tests.yml b/.github/workflows/frontier-tests.yml index 6dcb934..1918b37 100644 --- a/.github/workflows/frontier-tests.yml +++ b/.github/workflows/frontier-tests.yml @@ -15,8 +15,20 @@ jobs: permissions: contents: read steps: - - name: Checkout the source code + - name: Check out the source code uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + persist-credentials: true + + - name: Install deps + run: sudo apt -y install protobuf-compiler + + - name: Install & display rust toolchain + run: rustup show + + - name: Check targets are installed correctly + run: rustup target list --installed - name: Configure Git for Cargo run: | @@ -24,22 +36,12 @@ jobs: git config --global url."https://${{ secrets.GITHUB_TOKEN }}:x-oauth-basic@github.com/".insteadOf "https://github.com/" # Also replace git@github.com: with https:// git config --global url."https://${{ secrets.GITHUB_TOKEN }}:x-oauth-basic@github.com/".insteadOf "git@github.com:" - - name: Configure Cargo run: | mkdir -p .cargo echo '[net]' >> .cargo/config.toml - echo 'git-fetch-with-cli = true' >> .cargo/config.toml - - - name: Install deps - run: sudo apt -y install protobuf-compiler - - - name: Install & display rust toolchain - run: rustup show - - - name: Check targets are installed correctly - run: rustup target list --installed + # echo 'git-fetch-with-cli = true' >> .cargo/config.toml - name: Build Centrum run: cargo build --release diff --git a/node/.DS_Store b/node/.DS_Store deleted file mode 100644 index 0895fb0..0000000 Binary files a/node/.DS_Store and /dev/null differ