parent
2971baaee2
commit
2c53c27f5c
|
@ -8,7 +8,12 @@ pipeline {
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
|
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
|
||||||
'''
|
'''
|
||||||
archiveArtifacts "dist/"
|
}
|
||||||
|
}
|
||||||
|
stage('Archive') {
|
||||||
|
steps {
|
||||||
|
zip zipFile: "dist.zip", archive: true, dir: "dist/"
|
||||||
|
archiveArtifacts artifacts: "dist.zip", fingerprint: true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue