diff options
| -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 }} |
