Skip to content

Commit

Permalink
fix: do not junk paths during packages archive (#19)
Browse files Browse the repository at this point in the history
* fix: do not junk paths during packages archive

* 1.8.3
  • Loading branch information
sapachev authored Mar 1, 2023
1 parent 82b7142 commit be7dc78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ jobs:
- name: Build Package (de)
run: |
LOCALE=de npm run build
zip -rqj ./artifacts/packages/error-pages-de.latest.zip ./dist/
zip -rq ./artifacts/packages/error-pages-de.latest.zip ./dist/
- name: Build Package (en)
run: |
LOCALE=en npm run build
zip -rqj ./artifacts/packages/error-pages-en.latest.zip ./dist/
zip -rq ./artifacts/packages/error-pages-en.latest.zip ./dist/
- name: Build Package (ru)
run: |
LOCALE=ru npm run build
zip -rqj ./artifacts/packages/error-pages-ru.latest.zip ./dist/
zip -rq ./artifacts/packages/error-pages-ru.latest.zip ./dist/
- name: Upload artifacts
uses: actions/upload-pages-artifact@v1
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "error-pages",
"version": "1.8.2",
"version": "1.8.3",
"description": "Lightweight tool to create static HTTP Error Pages in minimalistic adaptive and accessible design with customization and localization support",
"main": "index.ts",
"scripts": {
Expand Down

0 comments on commit be7dc78

Please sign in to comment.