From e35a78609b3556c819d004225d44b7ceae0439a8 Mon Sep 17 00:00:00 2001 From: bbrodriges Date: Tue, 17 Oct 2023 15:15:38 +0300 Subject: [PATCH] remove refactor build --- .github/workflows/refactor.yml | 43 ---------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/refactor.yml diff --git a/.github/workflows/refactor.yml b/.github/workflows/refactor.yml deleted file mode 100644 index c7129fd..0000000 --- a/.github/workflows/refactor.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Refactor release - -on: - push: - branches: - - 'refactor' - -jobs: - - refactor_release: - runs-on: ubuntu-latest - container: golang:1.20 - permissions: - contents: write - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Cache deps - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: | - ${{ runner.os }}-go- - - - name: Vet - run: | - go vet ./... - - - name: Compile all - run: | - make all - - - name: Release artifacts - uses: ncipollo/release-action@v1 - with: - allowUpdates: true - makeLatest: false - prerelease: true - tag: refactor - updateOnlyUnreleased: true - artifacts: "bin/*"