Skip to content

Commit 29a36af

Browse files
committed
Fix path in yaml (@) was not allowed in file name
1 parent 66152e3 commit 29a36af

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/package-release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@ jobs:
3535
run: yarn test
3636

3737
- name: Package library
38-
# %s-%v.tgz => @trussworks-react-uswds-v*.*.*.tgz
3938
# https://v3.yarnpkg.com/cli/pack
40-
run: yarn pack --out %s-%v.tgz
39+
run: yarn pack --out trussworks-react-uswds-v%v.tgz
4140

4241
- name: Upload package
4342
uses: actions/upload-artifact@v4
4443
with:
45-
path: @trussworks-react-uswds-v*.*.*.tgz
44+
path: trussworks-react-uswds-v*.*.*.tgz
4645
if-no-files-found: error
4746
retention-days: 5

0 commit comments

Comments
 (0)