We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94d4ec4 commit 1fdafb7Copy full SHA for 1fdafb7
.github/workflows/production.yml
@@ -26,6 +26,16 @@ jobs:
26
27
# Steps represent a sequence of conversion that will be executed as part of the job
28
steps:
29
+ # Free up disk space
30
+ - name: Free Disk Space
31
+ run: |
32
+ sudo rm -rf /usr/share/dotnet
33
+ sudo rm -rf /opt/ghc
34
+ sudo rm -rf /usr/local/share/boost
35
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
36
+ sudo apt-get clean
37
+ df -h
38
+
39
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
40
- name: Checkout
41
uses: actions/checkout@v2
@@ -79,4 +89,4 @@ jobs:
79
89
PATHS: /conversion/*
80
90
AWS_REGION: 'us-west-2'
81
91
AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY }}
82
- AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS }}
92
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS }}
0 commit comments