Skip to content

Commit

Permalink
Merge pull request #103 from jolicode/Fix-phar-releasing
Browse files Browse the repository at this point in the history
Fix phar releasing
  • Loading branch information
lyrixx committed Feb 12, 2024
2 parents 449ff74 + a3e6111 commit 7051d4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/phar/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ runs:
working-directory: tools/phar

- name: Ensure PHAR is OK
run: build/castor.phar --version
run: build/jolitypo.phar --version
shell: bash
working-directory: tools/phar
4 changes: 2 additions & 2 deletions .github/workflows/build-phar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Upload the PHAR
uses: actions/upload-artifact@v3
with:
name: 'castor'
path: tools/phar/build/castor.phar
name: 'jolitypo'
path: tools/phar/build/jolitypo.phar
if-no-files-found: error
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: ./tools/phar/build/castor.phar
asset_name: castor.phar
asset_path: ./tools/phar/build/jolitypo.phar
asset_name: jolitypo.phar
asset_content_type: application/octet-stream

0 comments on commit 7051d4c

Please sign in to comment.