Skip to content

Commit

Permalink
More testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Dec 8, 2024
1 parent 205f809 commit 98878f1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/verify-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,12 @@ jobs:


- name: Verify PHAR file is available and download
run: curl --remote-name https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar
# run: curl --remote-name https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar
run: wget -O ${{ matrix.pharfile }}.phar https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar

- name: Verify signature file is available and download
run: curl --remote-name https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar.asc
# run: curl --remote-name https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar.asc
run: wget -O ${{ matrix.pharfile }}.phar.asc https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/latest/${{ matrix.pharfile }}.phar.asc

- name: "DEBUG: List files"
run: ls -R
Expand All @@ -90,7 +92,7 @@ jobs:
FINGERPRINT: "0x689DAD778FF08760E046228BA978220305CD5C32"
# run: gpg --keyserver https://keys.openpgp.org/ --search-keys juliette@phpcodesniffer.com
# run: gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x689DAD778FF08760E046228BA978220305CD5C32
run: gpg --keyserver keys.openpgp.org --recv-keys $FINGERPRINT
run: gpg --keyserver hkps://keys.openpgp.org --recv-keys $FINGERPRINT
# run: gpg --keyserver keys.openpgp.org --recv-keys 689DAD778FF08760E046228BA978220305CD5C32 | gpg --import

- name: "DEBUG: List public keys"
Expand Down

0 comments on commit 98878f1

Please sign in to comment.