From 2d4c630150f66a9e0e9326aa555b40dbc953f61e Mon Sep 17 00:00:00 2001 From: belliash Date: Sun, 26 Mar 2023 20:46:03 +0200 Subject: [PATCH] Cleanup a bit --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c130146..c9e121f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,8 @@ jobs: container: image: codingworkshop/oscw-runner: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 }} server hosted by Gitea!" - - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - - name: Checkout repository - uses: actions/checkout@v3 +# - name: Checkout repository +# uses: actions/checkout@v3 - name: Build XTChain run: CORES=10 ./build-linux.sh - name: Publish binaries @@ -24,4 +21,3 @@ jobs: OSCW_GITHUB_USERNAME: ${{ secrets.OSCW_GITHUB_USERNAME }} OSCW_GITHUB_PASSWORD: ${{ secrets.OSCW_GITHUB_PASSWORD }} run: github_publish $OSCW_GITHUB_USERNAME $OSCW_GITHUB_PASSWORD $(ls xtchain-*-linux.tar.zst) - - run: echo "This job's status is ${{ job.status }}."