From 64de8fc2229941c12c8fd7c1129b20055c943ae1 Mon Sep 17 00:00:00 2001 From: 1riatsila1 Date: Tue, 3 Dec 2024 14:26:43 +0200 Subject: [PATCH] try this --- .github/workflows/release.yaml | 76 +++++++++++++++++----------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7e720f7..eec2ad6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,20 +4,20 @@ name: Release # This GitHub action creates a release when manually run with signer details on: workflow_dispatch: - inputs: - CS_ID: - description: "Code Signing ID" - required: true - type: string - CS_API_TOKEN: - description: "Code Signing API Token" - required: true - type: string +# inputs: +# CS_ID: +# description: "Code Signing ID" +# required: true +# type: string +# CS_API_TOKEN: +# description: "Code Signing API Token" +# required: true +# type: string -# Releases need permissions to read and write the repository contents. -# GitHub considers creating releases and uploading assets as writing contents. -permissions: - contents: write +# # Releases need permissions to read and write the repository contents. +# # GitHub considers creating releases and uploading assets as writing contents. +# permissions: +# contents: write jobs: acceptance-tests: @@ -37,31 +37,31 @@ jobs: - name: Run Acceptance Tests run: just acceptance-tests acceptance.env - goreleaser: - runs-on: Signer - needs: acceptance-tests - steps: - - uses: actions/checkout@v4.2.2 - with: - # Allow goreleaser to access older tag information. - fetch-depth: 0 + # goreleaser: + # runs-on: Signer + # needs: acceptance-tests + # steps: + # - uses: actions/checkout@v4.2.2 + # with: + # # Allow goreleaser to access older tag information. + # fetch-depth: 0 - - name: Setup Just - uses: extractions/setup-just@v2 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # - name: Setup Just + # uses: extractions/setup-just@v2 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-go@v5.1.0 - with: - go-version-file: 'go.mod' - cache: true + # - uses: actions/setup-go@v5.1.0 + # with: + # go-version-file: 'go.mod' + # cache: true - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6.0.0 - with: - args: release --clean - env: - # GitHub sets the GITHUB_TOKEN secret automatically. - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CS_ID: ${{ inputs.CS_ID }} - CS_API_TOKEN: ${{ inputs.CS_API_TOKEN }} + # - name: Run GoReleaser + # uses: goreleaser/goreleaser-action@v6.0.0 + # with: + # args: release --clean + # env: + # # GitHub sets the GITHUB_TOKEN secret automatically. + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # CS_ID: ${{ inputs.CS_ID }} + # CS_API_TOKEN: ${{ inputs.CS_API_TOKEN }}