Skip to content

Commit

Permalink
fix: try including hidden files
Browse files Browse the repository at this point in the history
  • Loading branch information
notdryft committed Dec 9, 2024
1 parent aaa026a commit 7dee7f0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 18 deletions.
29 changes: 11 additions & 18 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: release-jvm-workdir
path: .
include-hidden-files: true
path: |
.
!.git/
retention-days: 7

release-js:
Expand Down Expand Up @@ -101,12 +104,17 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: release-js-workdir
path: .
include-hidden-files: true
path: |
.
!.git/
retention-days: 7

create-github-release:
name: Create GitHub release (draft)
needs: release-js
needs:
- release-jvm
- release-js
runs-on: ubuntu-latest
timeout-minutes: 2
environment:
Expand Down Expand Up @@ -163,9 +171,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -188,9 +193,6 @@ jobs:
runs-on: ubuntu-24-arm-2-cores
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -213,9 +215,6 @@ jobs:
runs-on: macos-13
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -238,9 +237,6 @@ jobs:
runs-on: macos-14
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand All @@ -263,9 +259,6 @@ jobs:
runs-on: windows-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand Down
1 change: 1 addition & 0 deletions js/cli/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
!/target/**
!/polyfills/**
!/package.json
!/README.md
1 change: 1 addition & 0 deletions js/core/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*
!/target/**
!/package.json
!/README.md
1 change: 1 addition & 0 deletions js/http/.npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*
!/target/**
!/package.json
!/README.md
1 change: 1 addition & 0 deletions js/jvm-types/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
!/**/*.js
!/**/*.d.ts
!/package.json
!/README.md

0 comments on commit 7dee7f0

Please sign in to comment.