Skip to content

Commit e9102c7

Browse files
committed
Avoid git line ending problems in cross-platform test
Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
1 parent 216b702 commit e9102c7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/cross-os.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ jobs:
4848
- name: Fetch testing oidc token
4949
uses: sigstore-conformance/extremely-dangerous-public-oidc-beacon@b517a742e5a3db9e3cbf8e2e1c792b36982f78db # main
5050
- name: Sign
51-
run: python -m sigstore --staging sign --identity-token $(cat oidc-token.txt) README.md
51+
run: python -m sigstore --staging sign --identity-token $(cat oidc-token.txt) test/assets/a.txt
5252
- name: upload signature bundle
5353
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
5454
with:
5555
name: ${{ matrix.os }}-bundle
56-
path: README.md.sigstore.json
56+
path: test/assets/a.txt.sigstore.json
5757
if-no-files-found: error
5858
retention-days: 1
5959
verify:
@@ -83,4 +83,5 @@ jobs:
8383
run: |
8484
python -m sigstore --staging verify github --verbose \
8585
--cert-identity "https://github.com/sigstore-conformance/extremely-dangerous-public-oidc-beacon/.github/workflows/extremely-dangerous-oidc-beacon.yml@refs/heads/main" \
86-
README.md
86+
--bundle a.txt.sigstore.json \
87+
test/assets/a.txt

0 commit comments

Comments
 (0)