Skip to content
This repository was archived by the owner on Jul 25, 2023. It is now read-only.

Commit 1e20f00

Browse files
authored
fix: proper static distribution pate adjustment (#16)
1 parent 9bddebb commit 1e20f00

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
- name: "📦 install dependencies"
129129
run: npm ci
130130

131-
- name: "📂 download artifacts"
131+
- name: "📂 download docker artifacts"
132132
uses: actions/download-artifact@v2
133133
with:
134134
name: docker
@@ -139,6 +139,12 @@ jobs:
139139
docker load --input /tmp/docker.tar
140140
docker image ls -a
141141
142+
- name: "📂 download build artifacts"
143+
uses: actions/download-artifact@v2
144+
with:
145+
name: build
146+
path: /tmp/build
147+
142148
- name: "🚀 release"
143149
id: release
144150
env:
@@ -149,6 +155,7 @@ jobs:
149155
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
150156
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}
151157
run: |
158+
cp -R /tmp/build ./build
152159
npx semantic-release
153160
echo "::set-output name=version::$(cat package.json | jq -r '.version')"
154161

0 commit comments

Comments
 (0)