Skip to content

Commit 8a4d603

Browse files
committed
optimized
1 parent cae78fb commit 8a4d603

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/centos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- run: ./ppkg update
4141
- run: ./ppkg install uppm -I .
4242
- run: ./ppkg tree uppm
43-
- run: ./ppkg bundle uppm
43+
- run: ./ppkg bundle uppm .tar.xz
4444

4545
- run: tar vxf uppm-*.tar.xz --strip-components=1
4646

@@ -148,7 +148,7 @@ jobs:
148148
- run: ./ppkg update
149149
- run: ./ppkg install uppm -I .
150150
- run: ./ppkg tree uppm
151-
- run: ./ppkg bundle uppm
151+
- run: ./ppkg bundle uppm .tar.xz
152152

153153
- run: tar vxf uppm-*.tar.xz --strip-components=1
154154

.github/workflows/debian.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- run: ./ppkg update
4141
- run: ./ppkg install uppm -I .
4242
- run: ./ppkg tree uppm
43-
- run: ./ppkg bundle uppm
43+
- run: ./ppkg bundle uppm .tar.xz
4444

4545
- run: tar vxf uppm-*.tar.xz --strip-components=1
4646

.github/workflows/linuxmint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- run: ./ppkg update
4141
- run: ./ppkg install uppm -I .
4242
- run: ./ppkg tree uppm
43-
- run: ./ppkg bundle uppm
43+
- run: ./ppkg bundle uppm .tar.xz
4444

4545
- run: tar vxf uppm-*.tar.xz --strip-components=1
4646

.github/workflows/macos-ppkg.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: ./ppkg update
3636
- run: ./ppkg install uppm -I .
3737
- run: ./ppkg tree uppm
38-
- run: ./ppkg bundle uppm
38+
- run: ./ppkg bundle uppm .tar.xz
3939

4040
- run: tar vxf uppm-*.tar.xz --strip-components=1
4141

.github/workflows/publish.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
~/.ppkg/uppm/installed/gsed/bin/gsed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
6666
6767
- run: ./ppkg install netbsd-${{ matrix.target-version }}-amd64/uppm --static
68-
- run: ./ppkg bundle netbsd-${{ matrix.target-version }}-amd64/uppm
68+
- run: ./ppkg bundle netbsd-${{ matrix.target-version }}-amd64/uppm .tar.xz
6969

7070
- uses: actions/upload-artifact@v4
7171
with:
@@ -95,7 +95,7 @@ jobs:
9595
~/.ppkg/uppm/installed/gsed/bin/gsed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
9696
9797
- run: ./ppkg install openbsd-${{ matrix.target-version }}-amd64/uppm
98-
- run: ./ppkg bundle openbsd-${{ matrix.target-version }}-amd64/uppm
98+
- run: ./ppkg bundle openbsd-${{ matrix.target-version }}-amd64/uppm .tar.xz
9999

100100
- uses: actions/upload-artifact@v4
101101
with:
@@ -124,7 +124,7 @@ jobs:
124124
~/.ppkg/uppm/installed/gsed/bin/gsed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
125125
126126
- run: ./ppkg install freebsd-${{ matrix.target-version }}-amd64/uppm --static
127-
- run: ./ppkg bundle freebsd-${{ matrix.target-version }}-amd64/uppm
127+
- run: ./ppkg bundle freebsd-${{ matrix.target-version }}-amd64/uppm .tar.xz
128128

129129
- uses: actions/upload-artifact@v4
130130
with:
@@ -154,7 +154,7 @@ jobs:
154154
~/.uppm/installed/gsed/bin/gsed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.xcpkg/repos.d/official-core/formula/uppm.yml
155155
156156
- run: ./xcpkg install MacOSX/${{ matrix.target-version }}/${{ matrix.target-arch }}/uppm
157-
- run: ./xcpkg bundle MacOSX/${{ matrix.target-version }}/${{ matrix.target-arch }}/uppm
157+
- run: ./xcpkg bundle MacOSX/${{ matrix.target-version }}/${{ matrix.target-arch }}/uppm .tar.xz
158158

159159
- uses: actions/upload-artifact@v4
160160
with:
@@ -185,7 +185,7 @@ jobs:
185185
sed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
186186
187187
- run: ./ppkg install uppm --static
188-
- run: ./ppkg bundle uppm
188+
- run: ./ppkg bundle uppm .tar.xz
189189

190190
- uses: actions/upload-artifact@v4
191191
with:
@@ -230,7 +230,7 @@ jobs:
230230
sed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
231231
232232
run ./ppkg install uppm --static
233-
run ./ppkg bundle uppm
233+
run ./ppkg bundle uppm .tar.xz
234234
EOF
235235
236236
chmod +x run.sh
@@ -284,7 +284,7 @@ jobs:
284284
sed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
285285
286286
run ./ppkg install uppm --static
287-
run ./ppkg bundle uppm
287+
run ./ppkg bundle uppm .tar.xz
288288
EOF
289289
290290
chmod +x run.sh
@@ -338,7 +338,7 @@ jobs:
338338
sed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
339339
340340
run ./ppkg install uppm --static
341-
run ./ppkg bundle uppm
341+
run ./ppkg bundle uppm .tar.xz
342342
EOF
343343
344344
chmod +x run.sh
@@ -393,7 +393,7 @@ jobs:
393393
sed -i "/git-url/a git-sha: ${{ needs.check.outputs.git-sha }}" ~/.ppkg/repos.d/official-core/formula/uppm.yml
394394
395395
run ./ppkg install uppm --static
396-
run ./ppkg bundle uppm
396+
run ./ppkg bundle uppm .tar.xz
397397
EOF
398398
399399
chmod +x run.sh

.github/workflows/rockylinux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- run: ./ppkg update
4343
- run: ./ppkg install uppm -I .
4444
- run: ./ppkg tree uppm
45-
- run: ./ppkg bundle uppm
45+
- run: ./ppkg bundle uppm .tar.xz
4646

4747
- run: tar vxf uppm-*.tar.xz --strip-components=1
4848

.github/workflows/ubuntu-ppkg.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: ./ppkg update
3636
- run: ./ppkg install uppm -I .
3737
- run: ./ppkg tree uppm
38-
- run: ./ppkg bundle uppm
38+
- run: ./ppkg bundle uppm .tar.xz
3939

4040
- run: tar vxf uppm-*.tar.xz --strip-components=1
4141

0 commit comments

Comments
 (0)