From 8ac388b6a549c230ccc0079aa44706a8ace39c14 Mon Sep 17 00:00:00 2001 From: Mohammed Rabil Date: Fri, 25 Aug 2023 17:13:15 +0530 Subject: [PATCH] Add gcc and clang support --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b60d0952..620be437 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,11 +42,9 @@ jobs: goos: ios steps: - uses: actions/checkout@v3 - - name: Set up Clang - uses: egor-tensin/setup-clang@v1 - with: - version: latest - platform: x64 + - name: Set up Clang and GCC + run: | + sudo apt-get install -y clang gcc - uses: wangyoucao577/go-release-action@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }}