We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef2389c commit f252c4dCopy full SHA for f252c4d
README.md
@@ -194,9 +194,9 @@ jobs:
194
195
```
196
197
-# Output
+# Outputs
198
199
-Return an image digest as output. This applies to builds or retagged images.
+Returns digests for the new and previous images, if available. This applies to build and retags.
200
201
```yaml
202
- id: meaningful_id_name
@@ -205,7 +205,8 @@ Return an image digest as output. This applies to builds or retagged images.
205
206
- name: Echo digest
207
run: |
208
- echo "Image digest: ${{ steps.meaningful_id_name.outputs.digest }}"
+ echo "Digest, new: ${{ steps.meaningful_id_name.outputs.digest }}"
209
+ echo "Digest, old: ${{ steps.meaningful_id_name.outputs.digest_old }}"
210
...
211
212
0 commit comments