Remove downloaded file and do not maximize build space

This commit is contained in:
Ayaz Salikhov
2022-05-13 19:19:55 +03:00
parent 26951efe86
commit 3ef0cf882a
2 changed files with 3 additions and 7 deletions

View File

@@ -4,13 +4,6 @@ description: "Create build environment"
runs:
using: "composite"
steps:
# - name: Maximize build space 🛠
# run: |
# sudo rm -rf /usr/share/dotnet
# sudo rm -rf /usr/local/lib/android
# sudo rm -rf /opt/ghc
# shell: bash
- name: Set Up Python 🐍
uses: actions/setup-python@v3
with:

View File

@@ -24,3 +24,6 @@ runs:
docker load --input /tmp/${{ inputs.image }}-${{ inputs.platform }}.tar
docker image ls -a
shell: bash
- name: Delete the file 🗑️
run: rm /tmp/${{ inputs.image }}-${{ inputs.platform }}.tar
shell: bash