mirror of
https://github.com/tauri-apps/tauri-action.git
synced 2026-01-31 00:35:20 +01:00
committed by
GitHub
parent
a6a1e9fc25
commit
0eb61ed08a
2
.gitignore
vendored
2
.gitignore
vendored
@@ -6,6 +6,8 @@ yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
.DS_Store
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
|
||||
2
packages/action/dist/index.js
vendored
2
packages/action/dist/index.js
vendored
@@ -72,7 +72,7 @@ function run() {
|
||||
let i = 0;
|
||||
for (const artifact of artifacts) {
|
||||
if (artifact.endsWith('.app')) {
|
||||
yield action_core_1.execCommand(`tar -czf ${artifact}.tgz ${artifact}`, {
|
||||
yield action_core_1.execCommand(`tar czf ${artifact}.tgz ${artifact}`, {
|
||||
cwd: undefined
|
||||
});
|
||||
artifacts[i] += '.tgz';
|
||||
|
||||
@@ -92,7 +92,7 @@ async function run(): Promise<void> {
|
||||
let i = 0
|
||||
for (const artifact of artifacts) {
|
||||
if (artifact.endsWith('.app')) {
|
||||
await execCommand(`tar -czf ${artifact}.tgz ${artifact}`, {
|
||||
await execCommand(`tar czf ${artifact}.tgz ${artifact}`, {
|
||||
cwd: undefined
|
||||
})
|
||||
artifacts[i] += '.tgz'
|
||||
|
||||
Reference in New Issue
Block a user