Skip to content

Commit 398af77

Browse files
committed
fix: refactor from git-templates to gh templates
Signed-off-by: rafaeljohn9 <rafaeljohb@gmail.com>
1 parent 6c4f705 commit 398af77

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,17 @@ jobs:
4141
- name: Rename binary
4242
run: |
4343
if [[ "${{ matrix.target }}" == *"windows"* ]]; then
44-
cp target/${{ matrix.target }}/release/git-templates.exe git-templates-${{ matrix.target }}.exe
44+
cp target/${{ matrix.target }}/release/gh-templates.exe gh-templates-${{ matrix.target }}.exe
4545
else
46-
cp target/${{ matrix.target }}/release/git-templates git-templates-${{ matrix.target }}
46+
cp target/${{ matrix.target }}/release/gh-templates gh-templates-${{ matrix.target }}
4747
fi
4848
4949
- name: Upload asset to GitHub Release
5050
uses: softprops/action-gh-release@v2
5151
with:
52-
name: git-templates-${{ matrix.target }}
52+
name: gh-templates-${{ matrix.target }}
5353
tag_name: ${{ github.ref_name }}
54-
files: git-templates-${{ matrix.target }}*
54+
files: gh-templates-${{ matrix.target }}*
5555
env:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

@@ -82,14 +82,14 @@ jobs:
8282

8383
- name: Rename binary
8484
run: |
85-
cp target/${{ matrix.target }}/release/git-templates git-templates-${{ matrix.target }}
85+
cp target/${{ matrix.target }}/release/gh-templates gh-templates-${{ matrix.target }}
8686
8787
- name: Upload asset to GitHub Release
8888
uses: softprops/action-gh-release@v2
8989
with:
90-
name: git-templates-${{ matrix.target }}
90+
name: gh-templates-${{ matrix.target }}
9191
tag_name: ${{ github.ref_name }}
92-
files: git-templates-${{ matrix.target }}
92+
files: gh-templates-${{ matrix.target }}
9393
env:
9494
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9595

0 commit comments

Comments
 (0)