aarch64 output tweaks

This commit is contained in:
Acrimon 2020-07-04 18:33:26 +02:00
parent 0f7841fa72
commit 22fd0e43f5
No known key found for this signature in database
GPG Key ID: 79B55D369EAD2A06
1 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,10 @@ jobs:
cargo test &>> output.txt
echo ::set-output name=test::$(cat output.txt | base64 -w 0)
- name: test
run: $(echo '${{ steps.test.outputs.test }}' | base64 -d)
run: |
output='${{ steps.test.outputs.test }}'
echo $prev_output > output.txt
base64 -d output.txt
build-wasm32:
runs-on: ubuntu-18.04