From a0e96cca724884838579217b212d0fe41f8ce1d5 Mon Sep 17 00:00:00 2001 From: Lukas Greve Date: Thu, 27 Nov 2025 19:27:27 +0100 Subject: [PATCH] remove dated workflow --- .gitea/workflows/demo.yaml | 21 --------------------- .gitea/workflows/release.yaml | 31 ------------------------------- 2 files changed, 52 deletions(-) delete mode 100644 .gitea/workflows/demo.yaml delete mode 100644 .gitea/workflows/release.yaml diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml deleted file mode 100644 index a9ad69c..0000000 --- a/.gitea/workflows/demo.yaml +++ /dev/null @@ -1,21 +0,0 @@ -name: release - -on: - push: - tags: - - '*' - -jobs: - release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Use Go Action - id: use-go-action - uses: https://gitea.com/actions/release-action@main - with: - files: |- - bin/** - api_key: '${{secrets.RELEASE_TOKEN}}' diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml deleted file mode 100644 index 4c9de0c..0000000 --- a/.gitea/workflows/release.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: release - -on: - push: - tags: - - '*' - -jobs: - release: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: setup go - uses: actions/setup-go@v5 - with: - go-version: '>=1.20.1' - - name: release-build - run: go build -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/reverse-${{ github.ref_name }}-linux-amd64 - - name: release-build-windows - run: GOOS=windows GOARCH=amd64 go build -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/reverse-${{ github.ref_name }}-windows-amd64.exe - - name: release-build-darwin - run: GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w -X 'main.Version=${{ github.ref_name }}'" -o bin/reverse-${{ github.ref_name }}-darwin-amd64 - - name: Use Go Action - id: use-go-action - uses: actions/release-action@main - with: - files: |- - bin/** - api_key: '${{secrets.RELEASE_TOKEN}}' \ No newline at end of file