mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-14 20:11:37 +03:00
17 lines
466 B
YAML
17 lines
466 B
YAML
|
parameters:
|
||
|
artifacts: 'target/release'
|
||
|
name: ''
|
||
|
|
||
|
steps:
|
||
|
- bash: |
|
||
|
set -ex
|
||
|
dst=$BUILD_ARTIFACTSTAGINGDIRECTORY
|
||
|
rm -f ${{ parameters.artifacts }}/wasm*.d
|
||
|
rm -f ${{ parameters.artifacts }}/wasm*.pdb
|
||
|
cp ${{ parameters.artifacts }}/wasm* $dst/
|
||
|
displayName: Create distribution tarball
|
||
|
- task: PublishPipelineArtifact@0
|
||
|
inputs:
|
||
|
artifactName: ${{ parameters.name }}
|
||
|
targetPath: '$(Build.ArtifactStagingDirectory)'
|