From f1c5916252de1ce374491f72e30dd996b77dabb0 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Sun, 18 Aug 2024 11:56:46 +1200 Subject: [PATCH] =?UTF-8?q?fix:=20Use=20plugin=20from=20organisation=20?= =?UTF-8?q?=F0=9F=92=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a3e3cfc..9de2dcd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,8 +15,10 @@ jobs: with: python-version: '3.10' cache: 'pip' # caching pip dependencies + - name: Ensure requirements are installed run: pip install -r requirements.txt + - name: Lint with ansible-lint run: ansible-lint --exclude ./tests -c ".ansible-lint" env: @@ -64,14 +66,14 @@ jobs: - uses: actions/setup-go@v5 with: go-version: '1.22' - - name: Install gitea provider for Go Semantic Release - run: | - mkdir -p .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/ && \ - wget https://github.com/cybercinch/go-semantic-release-provider-gitea/releases/download/v${GITEA_PROVIDER_VER}/go-semantic-release-provider-gitea_v${GITEA_PROVIDER_VER}_linux_amd64 \ - -O .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea && \ - chmod a+x .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea - env: - GITEA_PROVIDER_VER: 1.0.11 + # - name: Install gitea provider for Go Semantic Release + # run: | + # mkdir -p .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/ && \ + # wget https://github.com/cybercinch/go-semantic-release-provider-gitea/releases/download/v${GITEA_PROVIDER_VER}/go-semantic-release-provider-gitea_v${GITEA_PROVIDER_VER}_linux_amd64 \ + # -O .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea && \ + # chmod a+x .semrel/$(go env GOOS)_$(go env GOARCH)/provider-gitea/${GITEA_PROVIDER_VER}/gitea + # env: + # GITEA_PROVIDER_VER: 1.0.11 - run: | echo "github repo: ${GITHUB_REPOSITORY}" echo "env vars: $(env)"