diff --git a/.gitea/workflows/publish_package.yaml b/.gitea/workflows/publish_package.yaml index 9dba0c5..3436a27 100644 --- a/.gitea/workflows/publish_package.yaml +++ b/.gitea/workflows/publish_package.yaml @@ -9,11 +9,17 @@ jobs: Publish-Cargo: runs-on: ubuntu-latest steps: + - run: echo "The job was automatically triggered by a ${{ github.event_name }} event." + - 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 + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ source "$HOME/.cargo/env" + - name: Check out repository code uses: actions/checkout@v3 + - name: Publish run: cargo run -r \ No newline at end of file