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