Skip to content

Commit 4efdfea

Browse files
committed
fix naming style
1 parent 27017be commit 4efdfea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-release-import-script.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
GOOS: ${{ matrix.goos }}
3333
GOARCH: ${{ matrix.goarch }}
3434
run: |
35-
output_name="terraform-provider-astro-import-script_${{ steps.get_version.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }}"
35+
output_name="terraform-provider-astro-import-script-${{ steps.get_version.outputs.VERSION }}-${{ matrix.goos }}-${{ matrix.goarch }}"
3636
if [ "${{ matrix.goos }}" = "windows" ]; then
3737
output_name="${output_name}.exe"
3838
fi
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/upload-artifact@v4
4242
with:
4343
name: binary-${{ matrix.goos }}-${{ matrix.goarch }}
44-
path: terraform-provider-astro-import-script_*
44+
path: terraform-provider-astro-import-script-*
4545
if-no-files-found: warn
4646
compression-level: 6
4747
overwrite: false
@@ -125,7 +125,7 @@ jobs:
125125
});
126126
const files = await fs.readdir('.');
127127
for (const file of files) {
128-
if (file.startsWith('terraform-provider-astro-import-script_')) {
128+
if (file.startsWith('terraform-provider-astro-import-script-')) {
129129
await github.rest.repos.uploadReleaseAsset({
130130
owner,
131131
repo,

0 commit comments

Comments
 (0)