You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by aa...@apache.org on 2022/06/17 10:30:20 UTC

[rocketmq-clients] 01/01: Fix GitHub Action working directory for C#

This is an automated email from the ASF dual-hosted git repository.

aaronai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-clients.git

commit 9653dad3d53040b830959576b945ff0d3d0f6ff5
Author: Aaron Ai <ya...@gmail.com>
AuthorDate: Fri Jun 17 18:30:11 2022 +0800

    Fix GitHub Action working directory for C#
---
 .github/workflows/main.yml | 40 +---------------------------------------
 1 file changed, 1 insertion(+), 39 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index cdea878..21d7242 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,41 +1,3 @@
-<<<<<<< HEAD
-# This is a basic workflow to help you get started with Actions
-
-name: CI
-
-# Controls when the workflow will run
-on:
-  # Triggers the workflow on push or pull request events but only for the master branch
-  push:
-    branches: [ main ]
-  pull_request:
-    branches: [ main ]
-
-  # Allows you to run this workflow manually from the Actions tab
-  workflow_dispatch:
-
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
-jobs:
-  # This workflow contains a single job called "build"
-  build:
-    # The type of runner that the job will run on
-    runs-on: ubuntu-latest
-
-    # Steps represent a sequence of tasks that will be executed as part of the job
-    steps:
-      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
-      - uses: actions/checkout@v2
-      
-      - name: Setup Bazel
-        run: |
-          sudo apt-get -qq install npm
-          sudo npm install -g @bazel/bazelisk
-      - name: Use Bazel
-        if: matrix.os != 'windows'
-        run: bazel -h
-      - name: Compile All Targets
-        run: bazel build //...
-=======
 name: CI
 on: [push, pull_request]
 jobs:
@@ -51,7 +13,7 @@ jobs:
             5.0.x
             6.0.x
       - name: Build artifacts
+        working-directory: ./csharp
         run: |
           dotnet --version
           dotnet build
->>>>>>> csharp