diff --git a/.gitea/workflows/integration.yaml b/.gitea/workflows/integration.yaml index 016db41..3e8512c 100644 --- a/.gitea/workflows/integration.yaml +++ b/.gitea/workflows/integration.yaml @@ -21,36 +21,3 @@ jobs: - name: Check run: "deno task check" - build: - name: Build latest - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Clone - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - name: Install Deno - uses: denoland/setup-deno@v1 - with: - deno-version: v1.x - - - name: Install Go - uses: actions/setup-go@v5 - with: - go-version: '>=1.20.1' - - - name: Compile - run: "deno task compile" - - - name: Release - id: use-go-action - uses: "https://gitea.com/actions/release-action@main" - with: - files: "bunker" - api_key: '${{secrets.GITEA_TOKEN}}' - tag_name: "latest" - prerelease: true -