-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
63748ce
commit 91628b4
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,7 +89,6 @@ jobs: | |
- name: save stack caches | ||
if: | | ||
!cancelled() | ||
&& steps.restore-stack-caches.outputs.cache-hit != 'true' | ||
uses: unisonweb/actions/stack/cache/save@main | ||
with: | ||
cache-prefix: ${{env.exe_cache_prefix}} | ||
|
@@ -175,14 +174,13 @@ jobs: | |
name: share-docker-image | ||
path: /tmp/share-docker-image.tar | ||
|
||
# NOTE: disabled until repo goes public | ||
# This step generates an artifact attestation for the image, which is an unforgeable statement about where and how it was built. It increases supply chain security for people who consume the image. For more information, see "[AUTOTITLE](/actions/security-guides/using-artifact-attestations-to-establish-provenance-for-builds)." | ||
# - name: Generate artifact attestation | ||
# uses: actions/[email protected] | ||
# with: | ||
# subject-name: ${{ env.container_registry }}/${{ env.docker_image_name}} | ||
# subject-digest: ${{ steps.push.outputs.digest }} | ||
# push-to-registry: true | ||
- name: Generate artifact attestation | ||
uses: actions/[email protected] | ||
with: | ||
subject-name: ${{ env.container_registry }}/${{ env.docker_image_name}} | ||
subject-digest: ${{ steps.push.outputs.digest }} | ||
push-to-registry: true | ||
|
||
# A separate job for docker build because it requires elevated github token permissions. | ||
transcript-tests: | ||
|