From 0bcc63de8a74facb77ba4f9b2fb6ac9663eeeb15 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Mon, 17 Oct 2022 15:07:55 +0200 Subject: [PATCH] ci: Purge GHA I would rather dedicate to only Gitea (and maybe SRHT) Signed-off-by: Sam Therapy --- .github/workflows/ghrelease.yaml | 32 -------------------------------- .github/workflows/test.yaml | 25 ------------------------- 2 files changed, 57 deletions(-) delete mode 100644 .github/workflows/ghrelease.yaml delete mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/ghrelease.yaml b/.github/workflows/ghrelease.yaml deleted file mode 100644 index 93e3e63..0000000 --- a/.github/workflows/ghrelease.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: GitHub Release - -on: - push: - tags: - - "*" - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Checkout submodules - run: git submodule update --init --recursive - - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - - name: Release with GoReleaser - uses: goreleaser/goreleaser-action@v3 - with: - distribution: goreleaser - version: latest - args: release --rm-dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index f5b5c6b..0000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Test -on: push - -jobs: - test: - strategy: - fail-fast: true - matrix: - platform: [macos, windows] - goVer: [1.18, 1.19] - runs-on: ${{ matrix.platform }}-latest - steps: - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: ${{ matrix.goVer }} - - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Checkout submodules - run: git submodule update --init --recursive - - - name: Test - run: make test-ci