Skip to content

Commit 0020766

Browse files
authored
Fix a missing naming changes (#101)
1 parent b5fd96b commit 0020766

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build_phar.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: box compile
3838

3939
- name: Verify PHAR
40-
run: build/monorepo-builder.phar --version
40+
run: build/monorepo-builder --version
4141

4242
- name: Get commit info
4343
id: commit
@@ -52,8 +52,8 @@ jobs:
5252

5353
- name: Copy PHAR to target repo
5454
run: |
55-
cp build/monorepo-builder.phar target-repo/
56-
chmod 755 target-repo/monorepo-builder.phar
55+
cp build/monorepo-builder target-repo/
56+
chmod 755 target-repo/monorepo-builder
5757
5858
- name: Commit and push (branch)
5959
if: github.ref == 'refs/heads/main'
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
git config user.name "monorepo-bot"
6565
git config user.email "[email protected]"
66-
git add monorepo-builder.phar
66+
git add monorepo-builder
6767
git commit -m "Update to ${{ github.repository }}@${{ steps.commit.outputs.short_sha }}" \
6868
-m "Source: ${{ github.server_url }}/${{ github.repository }}/commit/${{ github.sha }}" \
6969
-m "${{ steps.commit.outputs.message }}" || echo "No changes to commit"
@@ -77,7 +77,7 @@ jobs:
7777
run: |
7878
git config user.name "monorepo-bot"
7979
git config user.email "[email protected]"
80-
git add monorepo-builder.phar
80+
git add monorepo-builder
8181
git commit -m "Release ${{ github.ref_name }}" \
8282
-m "Source: ${{ github.server_url }}/${{ github.repository }}/releases/tag/${{ github.ref_name }}"
8383
git tag ${{ github.ref_name }}

0 commit comments

Comments
 (0)