diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2023-01-09 13:52:11 -0500 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2025-08-18 11:51:28 -0400 |
| commit | bd16424ef14636baaeb16547b3bfad2e517c1350 (patch) | |
| tree | 48bfb21668647f5082482823f2c994c47fcba90d | |
| parent | c33e1621f7f1d19652f9cfa405207ce4e6417939 (diff) | |
| download | pantry-bd16424ef14636baaeb16547b3bfad2e517c1350.tar.gz pantry-bd16424ef14636baaeb16547b3bfad2e517c1350.tar.bz2 pantry-bd16424ef14636baaeb16547b3bfad2e517c1350.zip | |
Remove build signing
| -rw-r--r-- | .github/workflows/build.yml | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c5b840..b0f2a87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,17 +12,13 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [ 18.x ] - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 18.x cache: 'yarn' - name: Install Node.js packages run: yarn install @@ -38,10 +34,6 @@ jobs: - name: Maven package run: mvn package -Pnative - - name: Install cosign - uses: sigstore/cosign-installer@v2 - with: - cosign-release: 'v1.11.0' - name: Setup Docker buildx uses: docker/setup-buildx-action@v2 - name: Log into DockerHub @@ -66,11 +58,3 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max - # Sign the resulting Docker image digest. - # https://github.com/sigstore/cosign - - name: Sign the published Docker image - env: - COSIGN_EXPERIMENTAL: "true" - # This step uses the identity token to provision an ephemeral certificate - # against the sigstore community Fulcio instance. - run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }} |
