From 2fc430be353c86781d5b659124da2ab896717021 Mon Sep 17 00:00:00 2001 From: HeNine <> Date: Tue, 18 Apr 2023 16:33:27 +0200 Subject: [PATCH] build test --- .gitea/workflows/publish_package.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/publish_package.yaml b/.gitea/workflows/publish_package.yaml index 3436a27..c8e46ce 100644 --- a/.gitea/workflows/publish_package.yaml +++ b/.gitea/workflows/publish_package.yaml @@ -13,10 +13,15 @@ jobs: - run: echo "This job is now running on a ${{ runner.os }}." - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Install Rust - run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ - source "$HOME/.cargo/env" + # - name: Install Rust + # run: | + # curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + # - run: source "$HOME/.cargo/env" + + - name: Install minimal nightly + uses: actions-rs/toolchain@v1 + with: + profile: minimal - name: Check out repository code uses: actions/checkout@v3