From 5b2653e25cb452da209a9f168d3e23a3321b2262 Mon Sep 17 00:00:00 2001 From: John Guibas Date: Mon, 9 Oct 2023 16:40:59 -0700 Subject: [PATCH] feat: schema.json --- .github/workflows/release.yml | 49 ----------------------------------- 1 file changed, 49 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 9e24e9819..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Go Release - -on: - push: - branches-ignore: - - "**" - tags: - - "v*.*.*" - -permissions: - contents: write - packages: write - -jobs: - test: - name: Release - runs-on: chad - - steps: - - name: Checkout repo - uses: actions/checkout@v3 - with: - submodules: recursive - token: ${{ secrets.PRIVATE_PULL_TOKEN }} - - - name: Setup Go - uses: actions/setup-go@v3 - with: - go-version: "1.20" - - - name: Login to GitHub Container Registry - run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u succinctlabs --password-stdin - - # - name: Import GPG key - # id: import_gpg - # uses: crazy-max/ghaction-import-gpg@v5 - # with: - # gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }} - # passphrase: ${{ secrets.GPG_PASSPHRASE }} - # - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v4 - with: - distribution: goreleaser - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}