From 374ac1800a9a0d6d14d6bbf84283ad3ccc9d36cd Mon Sep 17 00:00:00 2001 From: Gerhard Lazu Date: Tue, 5 Apr 2022 19:04:32 +0100 Subject: [PATCH] ci: Remove release.yml workflow This has not been used in months, all releases run through auto-release.yml now. Follow-up to https://github.com/dagger/dagger/pull/2048 Signed-off-by: Gerhard Lazu --- .github/workflows/release.yml | 35 ----------------------------------- 1 file changed, 35 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 a75c0584..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Release - -# Only a single job with this concurrency can run at any given time -concurrency: release - -on: - push: - tags: - - v* - -jobs: - release: - name: "Release" - runs-on: ubuntu-latest - defaults: - run: - shell: bash - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - name: Install Go - uses: actions/setup-go@v2 - with: - go-version: 1.16 - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 - with: - args: release --rm-dist --debug - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_DAGGER_CI_TOKEN }} - AWS_ACCESS_KEY_ID: ${{ secrets.RELEASE_AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.RELEASE_AWS_SECRET_ACCESS_KEY }} - AWS_REGION: us-east-1