From 10b311410ef545a37f0494edd380a9b5893d4c09 Mon Sep 17 00:00:00 2001 From: Maxfield Luke Date: Wed, 29 Jul 2026 04:59:01 -0400 Subject: [PATCH] ci: drop GitHub workflows; Forgejo Actions only --- .github/workflows/release.yml | 51 ----------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 8647729..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: release - -on: - push: - tags: - - "v*" - workflow_dispatch: - -permissions: - contents: read - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 - - - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff - with: - go-version-file: go.mod - cache: true - - - name: Test - run: go test ./... - - - name: Build release artifacts - run: make release VERSION="$GITHUB_REF_NAME" COMMIT="${GITHUB_SHA::7}" - - - name: Upload artifacts - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 - with: - name: magpie-${{ github.ref_name }} - path: dist/* - - publish: - if: startsWith(github.ref, 'refs/tags/') - needs: build - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Download artifacts - uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 - with: - name: magpie-${{ github.ref_name }} - path: dist - - - name: Publish GitHub release - uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 - with: - files: dist/*