Skip to content

Commit e7915bc

Browse files
authored
Merge pull request #432 from nextcloud/fix/add-workflow-updater-phar
Check updater.phar is up to date in check-same-code-base job
2 parents a9dbad9 + b190d12 commit e7915bc

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/check-same-code-base.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,11 @@ jobs:
3232

3333
- name: check-same-code-base
3434
run: make check-same-code-base
35+
36+
- name: check-updater-phar
37+
run: |
38+
make box
39+
./box info -l updater.phar | grep -v "^Signature Hash" | grep -v "^ Version.php " | grep -v "^Contents: " >updater.old.txt
40+
make updater.phar
41+
./box info -l updater.phar | grep -v "^Signature Hash" | grep -v "^ Version.php " | grep -v "^Contents: " >updater.txt
42+
diff updater.txt updater.old.txt

updater.phar

-6 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)